61 lines
1.3 KiB
JavaScript
61 lines
1.3 KiB
JavaScript
|
|
var lineConfig = {
|
|
renderTo: "#demo1",
|
|
points: {
|
|
attr: {
|
|
type: "auto"
|
|
}
|
|
},
|
|
yLabels: {
|
|
css: {
|
|
"marginLeft": "-4px",
|
|
"font-family": "Microsoft Yahei",
|
|
"font-size": "10px"
|
|
}
|
|
},
|
|
xLabels: {
|
|
css: {
|
|
"font-family": "Microsoft Yahei",
|
|
"font-size": "10px",
|
|
}
|
|
},
|
|
title: {
|
|
content: " 维 修 资 金 归 集 在 线 年 度 统 计 ",
|
|
css: {
|
|
"font-family": "Microsoft Yahei",
|
|
"font-size": "30px",
|
|
}
|
|
},
|
|
anim: {},
|
|
subTitle: {
|
|
css: {
|
|
"font-family": "Microsoft Yahei",
|
|
"font-size": "13px",
|
|
},
|
|
content: ""
|
|
},
|
|
lineType: "arc",
|
|
yAxis: {
|
|
num: 17
|
|
},
|
|
comparable: true,
|
|
legend: {
|
|
isShow: true, y: -10,
|
|
globalConfig: {
|
|
icontype: "square"
|
|
}
|
|
},
|
|
tip: {
|
|
offset: {
|
|
x: 10,
|
|
y: 10
|
|
},
|
|
template: function (e) {
|
|
var html = "";
|
|
for (var i in e.datas) {
|
|
html += "<span style='font-size:10px;color:" + e.datas[i]['color'] + "'>" + e.datas[i]['text'] + " " + e.datas[i]['y'] + " </span><br/>"
|
|
}
|
|
return html;
|
|
}
|
|
},
|
|
}; |