赞
踩
<script src="js/Chart.min.js"></script>
<canvas id="myChart" width="400" height="400"></canvas>
- var ctx = document.getElementById("myChart").getContext("2d");
- var data = {
- /// 表现在X轴上的数据,数组形式
- labels : ["January","February","March","April","May","June","July"],
- /// 第一条线
- datasets : [
- {
- /// 曲线的填充颜色
- fillColor : "rgba(220,220,220,0.5)",
- /// 填充块的边框线的颜色
- strokeColor : "rgba(220,220,220,1)",
- /// 表示数据的圆圈的颜色
- pointColor : "rgba(220,220,220,1)",
- /// 表示数据的圆圈的边的颜色
- pointStrokeColor : "#fff",
- data : [65.5,59.2,90,81,56,55,40]
- },
- /// 第二条线
- {
- fillColor : "rgba(151,187,205,0.5)",
- strokeColor : "rgba(151,187,205,1)",
- pointColor : "rgba(151,187,205,1)",
- pointStrokeColor : "#fff",
- data : [28,48,40,19,96,27,100]
- }
- ]
- }
- /// 动画效果call
- var options = {
-
- scaleFontStyle: "normal"
-
- }
- /// 创建对象,生成折线图表
- new Chart(ctx).Line(data,options);
new Chart(ctx).Bar(data);
new Chart(ctx).Radar(data);
var ctx = document.getElementById("myChart").getCOntext("2d);
new Chart(ctx).PolarArea(pieData);
new Chart(ctx).Doughnut(pieData);
//网格线是否在数据线的上面 scaleOverlay : false, //是否用硬编码重写y轴网格线 scaleOverride : false, //** Required if scaleOverride is true ** //y轴刻度的个数 scaleSteps : null, //y轴每个刻度的宽度 scaleStepWidth : null, // Y 轴的起始值 scaleStartValue : 0, // Y/X轴的颜色 scaleLineColor: "rgba(0,0,0,.1)", // X,Y轴的宽度 scaleLineWidth: 1, // 刻度是否显示标签, 即Y轴上是否显示文字 scaleShowLabels: true, // Y轴上的刻度,即文字 scaleLabel: "<%=value%>", // 字体 scaleFontFamily: "'Arial'", // 文字大小 scaleFontSize: 16, // 文字样式 scaleFontStyle: "normal", // 文字颜色 scaleFontColor: "#666", // 是否显示网格 scaleShowGridLines: true, // 网格颜色 scaleGridLineColor: "rgba(0,0,0,.05)", // 网格宽度 scaleGridLineWidth:2, // 是否使用贝塞尔曲线? 即:线条是否弯曲 bezierCurve: true, // 是否显示点数 pointDot: true, // 圆点的大小 pointDotRadius:5, // 圆点的笔触宽度, 即:圆点外层白色大小 pointDotStrokeWidth: 2, // 数据集行程(连线路径) datasetStroke: true, // 线条的宽度, 即:数据集 datasetStrokeWidth: 2, // 是否填充数据集 datasetFill: true, // 是否执行动画 animation: true, // 动画的时间 animationSteps: 60, // 动画的特效 animationEasing: "easeOutQuart", // 动画完成时的执行函数 onAnimationComplete: null
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。