42 Star 492 Fork 188

笔下光年 / Light Year Admin Using Iframe

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
lyear_js_chartjs.html 15.96 KB
一键复制 编辑 原始数据 按行查看 历史
笔下光年 提交于 2019-04-03 21:36 . 上传项目
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>图表 - 光年(Light Year Admin)后台管理系统模板</title>
<link rel="icon" href="favicon.ico" type="image/ico">
<meta name="keywords" content="LightYear,光年,后台模板,后台管理系统,光年HTML模板">
<meta name="description" content="LightYear是一个基于Bootstrap v3.3.7的后台管理系统的HTML模板。">
<meta name="author" content="yinqi">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/materialdesignicons.min.css" rel="stylesheet">
<link href="css/style.min.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid p-t-15">
<div class="row">
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>线形图 - 1</h4></div>
<div class="card-body">
<canvas id="chart-line-1" width="400" height="250"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>线形图 - 2</h4></div>
<div class="card-body">
<canvas id="chart-line-2" width="400" height="250"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>线形图 - 3</h4></div>
<div class="card-body">
<canvas id="chart-line-3" width="400" height="250"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>线形图 - 4</h4></div>
<div class="card-body">
<canvas id="chart-line-4" width="400" height="250"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>面积图 - 1</h4></div>
<div class="card-body">
<canvas id="chart-area-1" width="400" height="250"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>面积图 - 2</h4></div>
<div class="card-body">
<canvas id="chart-area-2" width="400" height="250"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>垂直条形图 - 1</h4></div>
<div class="card-body">
<canvas id="chart-vbar-1" width="400" height="250"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>垂直条形图 - 2</h4></div>
<div class="card-body">
<canvas id="chart-vbar-2" width="400" height="250"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>水平条形图 - 1</h4></div>
<div class="card-body">
<canvas id="chart-hbar-1" width="400" height="250"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>水平条形图 - 2</h4></div>
<div class="card-body">
<canvas id="chart-hbar-2" width="400" height="250"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>饼图</h4></div>
<div class="card-body">
<canvas id="chart-pie" width="280" height="280"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>环形图</h4></div>
<div class="card-body">
<canvas id="chart-doughnut" width="280" height="280"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>雷达图</h4></div>
<div class="card-body">
<canvas id="chart-radar" width="360" height="360"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>极区图</h4></div>
<div class="card-body">
<canvas id="chart-polar" width="360" height="360"></canvas>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>气泡图</h4></div>
<div class="card-body">
<canvas id="chart-bubble" width="280" height="280"></canvas>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/perfect-scrollbar.min.js"></script>
<script type="text/javascript" src="js/Chart.js"></script>
<script type="text/javascript" src="js/main.min.js"></script>
<script type="text/javascript">
new Chart($("#chart-line-1"), {
type: 'line',
data: {
labels: ["一月", "二月", "三月", "四月"],
datasets: [
{
label: "收入",
fill: false,
borderWidth: 3,
pointRadius: 0,
data: [30, 25, 35, 23]
}
]
},
options: {
legend: {
display: false
},
}
});
new Chart($("#chart-line-2"), {
type: 'line',
data: {
labels: ["一月", "二月", "三月", "四月"],
datasets: [{
label: "收入",
fill: false,
borderWidth: 3,
pointRadius: 5,
borderColor: "#9966ff",
pointBackgroundColor: "#9966ff",
pointBorderColor: "#9966ff",
pointHoverBackgroundColor: "#fff",
pointHoverBorderColor: "#9966ff",
data: [30, 25, 35, 23]
}]
},
options: {
legend: {
display: false
},
}
});
new Chart($("#chart-line-3"), {
type: 'line',
data: {
labels: ["一月", "二月", "三月", "四月"],
datasets: [{
label: "收入",
fill: false,
backgroundColor: "#36a2eb",
borderColor: "#36a2eb",
borderWidth: 3,
pointRadius: 0,
data: [30, 25, 35, 23]
},
{
label: "支出",
fill: false,
borderColor: "#ff6384",
backgroundColor: "#ff6384",
borderWidth: 3,
pointRadius: 0,
data: [23, 29, 30, 33]
}]
},
options: {}
});
new Chart($("#chart-line-4"), {
type: 'line',
data: {
labels: ["一月", "二月", "三月", "四月"],
datasets: [{
label: "收入",
fill: false,
borderWidth: 3,
pointRadius: 4,
borderColor: "#36a2eb",
backgroundColor: "#36a2eb",
pointBackgroundColor: "#36a2eb",
pointBorderColor: "#36a2eb",
pointHoverBackgroundColor: "#fff",
pointHoverBorderColor: "#36a2eb",
data: [30, 25, 35, 23]
},
{
label: "支出",
fill: false,
borderWidth: 3,
pointRadius: 4,
borderColor: "#ff6384",
backgroundColor: "#ff6384",
pointBackgroundColor: "#ff6384",
pointBorderColor: "#ff6384",
pointHoverBackgroundColor: "#fff",
pointHoverBorderColor: "#ff6384",
data: [23, 29, 30, 33]
}]
},
options: {}
});
new Chart($("#chart-area-1"), {
type: 'line',
data: {
labels: ["一月", "二月", "三月", "四月", "五月", "六月", "七月"],
datasets: [{
label: "收入",
backgroundColor: "rgba(51,202,185,0.5)",
borderWidth: 0,
borderColor: "rgba(0,0,0,0)",
data: [0, 59, 80, 58, 20, 55, 40]
}]
},
options: {
legend: {
display: false
},
}
});
new Chart($("#chart-area-2"), {
type: 'line',
data: {
labels: ["一月", "二月", "三月", "四月", "五月", "六月", "七月"],
datasets: [{
label: "收入",
backgroundColor: "rgba(51,202,185,0.5)",
borderColor: "rgba(0,0,0,0)",
pointBackgroundColor: "rgba(51,202,185,0.5)",
pointBorderColor: "#fff",
pointHoverBackgroundColor: "#fff",
pointHoverBorderColor: "rgba(51,202,185,0.5)",
data: [0, 59, 80, 58, 20, 55, 40]
},
{
label: "支出",
backgroundColor: "rgba(243,245,246,0.8)",
borderColor: "rgba(0,0,0,0)",
pointBackgroundColor: "rgba(243,245,246,0.8)",
pointBorderColor: "#fff",
pointHoverBackgroundColor: "#fff",
pointHoverBorderColor: "rgba(243,245,246,0.8)",
data: [28, 48, 40, 19, 86, 27, 90]
}]
},
options: {}
});
new Chart($("#chart-vbar-1"), {
type: 'bar',
data: {
labels: ["一月", "二月", "三月", "四月", "五月", "六月", "七月"],
datasets: [{
label: "收入",
backgroundColor: "rgba(51,202,185,0.5)",
borderColor: "rgba(0,0,0,0)",
hoverBackgroundColor: "rgba(51,202,185,0.7)",
hoverBorderColor: "rgba(0,0,0,0)",
data: [10, 59, 80, 58, 20, 55, 40]
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
new Chart($("#chart-vbar-2"), {
type: 'bar',
data: {
labels: ["一月", "二月", "三月", "四月", "五月", "六月", "七月"],
datasets: [{
label: "收入",
backgroundColor: "rgba(51,202,185,0.5)",
borderColor: "rgba(0,0,0,0)",
hoverBackgroundColor: "rgba(51,202,185,0.7)",
hoverBorderColor: "rgba(0,0,0,0)",
data: [10, 59, 80, 58, 20, 55, 40]
},
{
label: "支出",
backgroundColor: "rgba(243,245,246,0.8)",
borderColor: "rgba(0,0,0,0)",
hoverBackgroundColor: "rgba(238,239,240,1)",
hoverBorderColor: "rgba(0,0,0,0)",
data: [28, 48, 40, 19, 86, 27, 90]
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
new Chart($("#chart-hbar-1"), {
type: 'horizontalBar',
data: {
labels: ["一月", "二月", "三月", "四月", "五月", "六月", "七月"],
datasets: [{
label: "收入",
backgroundColor: "rgba(51,202,185,0.5)",
borderColor: "rgba(0,0,0,0)",
hoverBackgroundColor: "rgba(51,202,185,0.7)",
hoverBorderColor: "rgba(0,0,0,0)",
data: [10, 59, 80, 58, 20, 55, 40]
}]
},
options: {
scales: {
xAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
new Chart($("#chart-hbar-2"), {
type: 'horizontalBar',
data: {
labels: ["一月", "二月", "三月", "四月", "五月", "六月", "七月"],
datasets: [{
label: "收入",
backgroundColor: "rgba(51,202,185,0.5)",
borderColor: "rgba(0,0,0,0)",
hoverBackgroundColor: "rgba(51,202,185,0.7)",
hoverBorderColor: "rgba(0,0,0,0)",
data: [10, 59, 80, 58, 20, 55, 40]
},
{
label: "支出",
backgroundColor: "rgba(243,245,246,0.8)",
borderColor: "rgba(0,0,0,0)",
hoverBackgroundColor: "rgba(238,239,240,1)",
hoverBorderColor: "rgba(0,0,0,0)",
data: [28, 48, 40, 19, 86, 27, 90]
}]
},
options: {
scales: {
xAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
new Chart($("#chart-radar"), {
type: 'radar',
data: {
labels: ["饮食", "饮酒", "睡眠", "设计", "编码", "骑行", "运动"],
datasets: [{
label: "张三",
backgroundColor: "rgba(51,202,185,0.7)",
borderColor: "rgba(0,0,0,0)",
pointBackgroundColor: "rgba(51,202,185,0.7)",
pointBorderColor: "#fff",
pointHoverBackgroundColor: "#fff",
pointHoverBorderColor: "rgba(51,202,185,0.7)",
data: [65, 59, 90, 81, 56, 55, 40]
},
{
label: "李四",
backgroundColor: "rgba(72,176,247,0.7)",
borderColor: "rgba(0,0,0,0)",
pointBackgroundColor: "rgba(72,176,247,0.7)",
pointBorderColor: "#fff",
pointHoverBackgroundColor: "#fff",
pointHoverBorderColor: "rgba(72,176,247,0.7)",
data: [28, 48, 40, 19, 96, 27, 100]
}]
},
options: {
responsive: false,
legend: {
display: false
}
}
});
new Chart($("#chart-polar"), {
type: 'polarArea',
data: {
datasets: [{
data: [11, 16, 7, 3, 14],
backgroundColor: ['rgba(255,99,132,0.95)', 'rgba(75, 192, 192, 0.95)', 'rgba(255, 159, 64, 0.95)', 'rgba(231, 233, 237, 0.95)', 'rgba(54, 162, 235, 0.95)'],
label: 'My dataset' // for legend
}],
labels: ["红色", "绿色", "橙色", "灰色", "蓝色"]
},
options: {
responsive: false,
legend: {
display: false
}
}
});
new Chart($("#chart-pie"), {
type: 'pie',
data: {
labels: ["红色", "蓝色", "橙色"],
datasets: [{
data: [300, 50, 100],
backgroundColor: ['rgba(255,99,132,1)', 'rgba(54, 162, 235, 1)', 'rgba(255, 206, 86, 1)']
}]
},
options: {
responsive: false
}
});
new Chart($("#chart-doughnut"), {
type: 'doughnut',
data: {
labels: ["红色", "蓝色", "橙色"],
datasets: [{
data: [300, 50, 100],
backgroundColor: ['rgba(255,99,132,1)', 'rgba(54, 162, 235, 1)', 'rgba(255, 206, 86, 1)']
}]
},
options: {
responsive: false
}
});
new Chart($("#chart-bubble"), {
type: 'bubble',
data: {
datasets: [{
label: '粉红色',
data: [{
x: 8,
y: 24,
r: 18
},
{
x: 20,
y: 30,
r: 15
},
{
x: 40,
y: 10,
r: 10
}],
backgroundColor: "#ff6384",
hoverBackgroundColor: "#ff6384",
},
{
label: '蓝色',
data: [{
x: 10,
y: 35,
r: 5
},
{
x: 5,
y: 5,
r: 20
},
{
x: 30,
y: 15,
r: 10
}],
backgroundColor: "#36a2eb",
hoverBackgroundColor: "#36a2eb",
},
{
label: '黄色',
data: [{
x: 17,
y: 21,
r: 8
},
{
x: 25,
y: 15,
r: 12
},
{
x: 12,
y: 31,
r: 16
}],
backgroundColor: "#ffce56",
hoverBackgroundColor: "#ffce56",
},
]
},
options: {
legend: {
display: false
},
scales: {
xAxes: [{
ticks: {
beginAtZero: true
}
}],
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
</script>
</body>
</html>
HTML
1
https://gitee.com/yinqi/Light-Year-Admin-Using-Iframe.git
git@gitee.com:yinqi/Light-Year-Admin-Using-Iframe.git
yinqi
Light-Year-Admin-Using-Iframe
Light Year Admin Using Iframe
master

搜索帮助