echarts使用总结

echarts,我已经多次在不同的项目中使用(柱状图和饼图用的多)。官方例子和文档比较完备,这点我们要学百度,虽然我一向不太喜欢百度。熟能生巧,把心得与大家分享。首先看代码:  

<script type="text/javascript" src="~/Content/js/jquery.js"></script>

<script type="text/javascript" src="~/Content/js/lib/dist/echarts.js"></script>

<script src="~/Content/js/echartStatics.js"></script>

<script type="text/javascript">

$(function () {

var subjectName = $("#SubjectId").find("option:selected").text();

var barWidth = 15;

var params = {

1: {
bar: {
title: subjectName+'xx',
containerId: 'systemSetup1',
yName: '单位(篇 )',
splitNumber: 3,
barWidth
},
},
2: {
bar: {
title: subjectName + 'yy',
containerId: 'systemSetup4',
yName: '单位(名次 )',
splitNumber: 2,
maxXDataNumber: 12,
barWidth
}
}
};


//获取所有行
var trs = $("#tableDivThree tr:gt(1)");

var xs = []; //横坐标
var data = {
1: [],
2: [],
3: [],
4: []
};


var reg = /^[d.]+$/;

var trim = function (t) {

return t.replace(/[ s]/g, "");
}

var push = function (array,t) {

t = t.trim();

if (!reg.test(t)) {
array.push("0");
}
else {
array.push(t);
}
};

$.each(trs, function (i,k) {

var tds = $(k).find("td");

$.each(tds, function (j,v) {
var t = $(v).text();
if (j == 0) {
xs.push(trim(t));
}
else {
push(data[j], t);
}
});
});

var width = xs.length * barWidth * 2;

if (width < 700) {

width = 700;
}
var height = width*0.618; //黄金分割

$(".reportbar").height(height).width(width);
for (var key in data) {
new repport_ViewModel(params[key], xs, data[key],$("#MyInstituteName").val());
}
});

上面代码这么多,都是为了准备参数,实例化repport_ViewModel这个类。以下是这个类的代码,也是核心代码。

/*!
* Report v1.0.1
* by wbq (2016-06-16)
* Include echarts (http://echarts.baidu.com/)
*/
var repport_ViewModel = function (options,xdata,data,defaultXdata) {
var defaults = {
bar: {
name: 'bar',
colorList: [
'#2f7ed8', '#B5C334', '#FCCE10', '#E87C25', '#27727B',
'#FE8463', '#9BCA63', '#FAD860', '#F3A43B', '#60C0DD',
'#D7504B', '#C6E579', '#F4E001', '#F0805A', '#26C0C0'
],
seriesName: '',
containerId:'',
//列宽
20,

title: '',

subTitle: '',

titlePosition: 'center',
LabeltextStyle: {
fontSize: '12',
fontFamily: '微软雅黑',
fontWeight: 'bold'
},
yAxisIsShow: true,
isYformat:true, //是否格式化Y轴刻度
boundaryGap: [0, 0], // 坐标轴两端空白策略,数组内数值代表百分比
splitNumber: 6,
splitLine: false,
calculable: false,
maxXDataNumber:8 //横向最大显示数,若超过则x,y轴对调显示
},
echartsPath: '/Content/js/lib/dist'
};

var options = $.extend(true, {}, defaults, options);

var that = this;

//条形图
that.ChartBar=null;

//加载图表控件
that.InitLoad = function (echartsPath) {

require.config({
paths: {
echarts: echartsPath
}
});
};

/**
* 返回Chart单例
* @method
* @param {ec} 由echarts初始化时提供
* @param {chartType} chart类型,比如bar(柱状图),pie(饼状图)
* @return {myChart} echarts对象
*/

that.GetChartInstance = function (ec, chartType,containerId) {

var myChart;

if (chartType == options.bar.name) {

if (that.ChartBar == null) {

myChart = ec.init(document.getElementById(containerId));

that.ChartBar = myChart;
}
else {

myChart = that.ChartBar;
}
}
return myChart;

};

that.BuildBarData = function (xdata,ydata) {

var xAxisData = xdata;

var data = ydata;

//列名
var seriesName = options.bar.seriesName;
//列颜色
var colorList = options.bar.colorList;
//列宽
var barWidth = options.bar.width;

var barTitle = options.bar.title;

var subTitle = options.bar.subTitle;

var barTitlePosition = options.bar.titlePosition;


var xAxis = {
type: 'category',
data: xAxisData,
axisLabel: {
interval: 0,
rotate: 45
},
splitLine: options.bar.splitLine
};

var yAxis = {
type: 'value',
show: options.bar.yAxisIsShow,
name: options.bar.yName,
boundaryGap: options.bar.boundaryGap, // 坐标轴两端空白策略,数组内数值代表百分比
splitNumber: options.bar.splitNumber,
axisLabel: {
formatter: function (value, index) {
if (options.bar.isYformat) {
return value / 1000 + "k";
}
return value;
}
}
};

var tempAxis = xAxis;

if (xAxisData.length>options.bar.maxXDataNumber) {

xAxis = yAxis;
yAxis = tempAxis;
yAxis.axisLabel.rotate = 0;
}

var option = {

title: {
x: barTitlePosition,
text: barTitle,
subtext: subTitle,
link: ''
},

tooltip: {
show: true,
trigger: 'item'
},
legend: {
data: []
},
toolbox: {
show: false,
feature: {
mark: { show: true },
dataView: { show: true, readOnly: false },
magicType: { show: true, type: ['line', 'bar', 'stack', 'tiled'] },
restore: { show: true },
saveAsImage: { show: true }
}
},
calculable: options.bar.calculable,

grid: {
borderWidth:0,
y: 80,
y2: 60
},

xAxis: [
xAxis
],
yAxis: [
yAxis
],
series: [
{
name: seriesName,
type: options.bar.name,
barWidth: barWidth, // 系列级个性化,柱形宽度
itemStyle: {
normal: {
// 系列级个性化,横向渐变填充
borderRadius: 5,
color: function (params) {
if (defaultXdata == xdata[params.dataIndex]) {
return colorList[1];
}
return colorList[0];
},
label: {
show: true,
textStyle: options.bar.LabeltextStyle,
formatter: function (params) {
var value = params.value;
if (value > 0) {
return value;
}
}
}
}
},
data: data
}
]
};

return option;
};

that.LoadChart = function () {
require(
[
'echarts',
'echarts/chart/bar'
],
function (ec) {

var myChart = that.GetChartInstance(ec, options.bar.name, options.bar.containerId);
var d = that.BuildBarData(xdata,data);
myChart.clear();
myChart.setOption(d);

}
);
};
that.PageInit = function () {

that.InitLoad(options.echartsPath);
that.LoadChart();
};

that.PageInit();
};

 按模块加载,在本例中,我需要bar,就只加载bar

require(
[
'echarts',
'echarts/chart/bar'
]

原文地址:https://www.cnblogs.com/wangqiang3311/p/5687259.html