mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
3.0 KiB
86 lines
3.0 KiB
<html>
|
|
<body>
|
|
<div id="main" style="height:400px;"></div>
|
|
...
|
|
<script src="/static/js/echarts/echarts.js"></script>
|
|
<script type="text/javascript">
|
|
require.config({
|
|
paths: {
|
|
'echarts': '/static/js/echarts/chart',
|
|
'echarts/chart/line': '/static/js/echarts/chart/line'
|
|
}
|
|
});
|
|
require(
|
|
[
|
|
'echarts',
|
|
'echarts/chart/line'
|
|
],
|
|
function (ec) {
|
|
var myChart = ec.init(document.getElementById('main'));
|
|
var option = {
|
|
title : {
|
|
text: '某楼盘销售情况',
|
|
subtext: '纯属虚构'
|
|
},
|
|
tooltip : {
|
|
trigger: 'axis'
|
|
},
|
|
legend: {
|
|
data:['意向','预购','成交']
|
|
},
|
|
toolbox: {
|
|
show : true,
|
|
feature : {
|
|
mark : {show: true},
|
|
dataView : {show: true, readOnly: false},
|
|
magicType : {show: true, type: ['line', 'bar', 'stack', 'tiled']},
|
|
restore : {show: true},
|
|
saveAsImage : {show: true}
|
|
}
|
|
},
|
|
calculable : true,
|
|
xAxis : [
|
|
{
|
|
type : 'category',
|
|
boundaryGap : false,
|
|
data : ['周一','周二','周三','周四','周五','周六','周日']
|
|
}
|
|
],
|
|
yAxis : [
|
|
{
|
|
type : 'value'
|
|
}
|
|
],
|
|
series : [
|
|
{
|
|
name:'成交',
|
|
type:'line',
|
|
smooth:true,
|
|
itemStyle: {normal: {areaStyle: {type: 'default'}}},
|
|
data:[10, 12, 21, 54, 260, 830, 710]
|
|
},
|
|
{
|
|
name:'预购',
|
|
type:'line',
|
|
smooth:true,
|
|
itemStyle: {normal: {areaStyle: {type: 'default'}}},
|
|
data:[30, 182, 434, 791, 390, 30, 10]
|
|
},
|
|
{
|
|
name:'意向',
|
|
type:'line',
|
|
smooth:true,
|
|
itemStyle: {normal: {areaStyle: {type: 'default'}}},
|
|
data:[1320, 1132, 601, 234, 120, 90, 20]
|
|
}
|
|
]
|
|
};
|
|
|
|
|
|
myChart.setOption(option);
|
|
}
|
|
);
|
|
</script>
|
|
</body>
|
|
</html>
|