Highcharts属性

  1     <%@ page language="java" contentType="text/html; charset=UTF-8"  
  2         pageEncoding="UTF-8"%>  
  3     <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  4     <html>  
  5     <head>  
  6     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
  7     <title>Highcharts Demo</title>  
  8     <script type="text/javascript" src="js/jquery.min.js"></script>  
  9     <script type="text/javascript" src="js/highcharts.js"></script>  
 10     <script type="text/javascript" src="js/excanvas.compiled.js"></script>  
 11     <script type="text/javascript">  
 12     var chart;  
 13     $(document).ready(function() {  
 14         chart = new Highcharts.Chart({  
 15             chart: {  
 16                 renderTo: 'container',//设置显示图表的容器  
 17                 type: 'line',//设置图表样式,可以为line,spline, scatter, splinearea bar,pie,area,column  
 18     //          defaultSeriesType: 'column', //图表的默认样式  
 19     //          margin:[21, 23, 24, 54],//整个图表的位置(上下左右的空隙)  
 20                 marginRight: 200,//右边间距  
 21                 marginBottom: 25//底部间距/空隙  
 22     //          inverted: false,//可选,控制显示方式,默认上下正向显示  
 23     //          shadow:true,//外框阴影  
 24     //          backgroundColor:"#FFF",  
 25     //          animation:true,  
 26     //          borderColor:"#888",  
 27     //          borderRadius:5,  
 28     //          borderWidth:1,  
 29     //          ignoreHiddenSeries:true,  
 30     //          reflow:true,  
 31     //          plotBorderWidth:1,  
 32     //          alignTicks:true  
 33             },  
 34             labels:{//在报表上显示的一些文本  
 35                 items:[{  
 36                     html:'本图表数据有误,仅用于说明相应的属性',  
 37                     style:{left:'100px',top:'60px'}  
 38                 }, {  
 39                     html:'http://www.highcharts.com/demo',  
 40                     style:{left:'100px',top:'100px'}  
 41                 }]  
 42             },  
 43             credits:{//右下角的文本  
 44                 enabled: true,  
 45                 position: {//位置设置  
 46                     align: 'right',  
 47                     x: -10,  
 48                     y: -10  
 49                 },  
 50                 href: "http://www.highcharts.com",//点击文本时的链接  
 51                 style: {  
 52                     color:'blue'  
 53                 },  
 54                 text: "Highcharts Demo"//显示的内容  
 55             },  
 56     //        plotOptions:{//绘图线条控制  
 57     //            spline:{  
 58     //                allowPointSelect :true,//是否允许选中点  
 59     //                animation:true,//是否在显示图表的时候使用动画  
 60     //                cursor:'pointer',//鼠标移到图表上时鼠标的样式  
 61     //                dataLabels:{  
 62     //                   enabled :true,//是否在点的旁边显示数据  
 63     //                    rotation:0  
 64     //                },  
 65     //                enableMouseTracking:true,//鼠标移到图表上时是否显示提示框  
 66     //                events:{//监听点的鼠标事件  
 67     //                    click: function() {  
 68     //                    }  
 69     //                },  
 70     //                marker:{  
 71     //                    enabled:true,//是否显示点  
 72     //                   radius:3,//点的半径  
 73     //                      fillColor:"#888"  
 74     //                    lineColor:"#000"  
 75     //                    symbol: 'url(http://highcharts.com/demo/gfx/sun.png)',//设置点用图片来显示  
 76     //                    states:{  
 77     //                        hover:{  
 78     //                            enabled:true//鼠标放上去点是否放大  
 79     //                                                    },  
 80     //                        select:{  
 81     //                            enabled:false//控制鼠标选中点时候的状态  
 82     //                        }  
 83     //                    }  
 84     //               },  
 85     //                states:{  
 86     //                    hover:{  
 87     //                        enabled:true,//鼠标放上去线的状态控制  
 88     //                        lineWidth:3  
 89     //                    }  
 90     //                },  
 91     //                stickyTracking:true,//跟踪  
 92     //                visible:true,  
 93     //                lineWidth:2//线条粗细  
 94     //                pointStart:100,  
 95     //            }  
 96     //        },  
 97       
 98             title: {  
 99                 text: 'Monthly Average Temperature',//标题  
100                 x: -20 //center设置标题的位置  
101             },  
102             subtitle: {  
103                 text: 'Source: WorldClimate.com',//副标题  
104                 x: -20//副标题位置  
105             },  
106             xAxis: {//横轴的数据  
107                 categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',  
108                     'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']  
109     //          lineWidth:1,//纵轴一直为空所对应的轴,即X轴  
110     //          plotLines: [{//一条竖线  
111     //               color: '#FF0000',  
112     //               width: 2,  
113     //               value: 5.5  
114     //           }]  
115     //          labels: {//设置横轴坐标的显示样式  
116     //              rotation: -45,//倾斜度  
117     //              align: 'right',  
118     //              style: {  
119     //                   font: 'normal 13px Verdana, sans-serif'  
120     //                   color: 'white'  
121     //              }  
122     //          }  
123       
124             },  
125             yAxis: {  
126     //          tickInterval: 200,  //自定义刻度  
127     //          max:1000,//纵轴的最大值  
128     //          min: 0,//纵轴的最小值  
129                 title: {//纵轴标题  
130                     text: '百分数'  
131                 },  
132                 labels : {  
133                     formatter : function() {//设置纵坐标值的样式  
134                      return this.value + '%';  
135                     }  
136                    },   
137                 plotLines: [{  
138                     value: 0,  
139                     width: 1,  
140                     color: '#808080'  
141                 }]  
142             },  
143             tooltip: {//鼠标移到图形上时显示的提示框  
144                 formatter: function() {  
145                         return '<b>'+ this.series.name +'</b><br/>'+  
146                         this.x +': '+ this.y +'°C';  
147                 }  
148     //          crosshairs:[{//控制十字线  
149     //              width:1,  
150     //              color:"#CCC",  
151     //              dashStyle:"longdash"  
152     //          }  
153       
154             },  
155             legend: {//方框所在的位置(不知道怎么表达)  
156                 layout: 'vertical',  
157                 align: 'right',  
158                 verticalAlign: 'top',  
159                 x: -10,  
160                 y: 100,  
161                 borderWidth: 0  
162             },  
163             series: [{//以下为纵轴数据  
164                 name: 'Tokyo',  
165                 data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]  
166             }, {  
167                 name: 'New York',  
168                 data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]  
169             }, {  
170                 name: 'Berlin',  
171                 data: [-0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]  
172             }, {  
173                 name: 'London',  
174                 data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]  
175             }]  
176         });  
177     });  
178     </script>  
179     </head>  
180     <body>  
181     <div id="container" ></div>  
182     </body>  
183     </html> 
184 
185  
186 
187  
188 
189  
190 
191  
192 
193  
194 
195 属性说明【部分】
196 
197 一.chart的部分相关属性说明
198     renderTo: 'container',      //图表的页面显示容器(也就是要显示到的div)
199     defaultSeriesType: 'line',  //图表类型(line、spline、scatter、splinearea、bar、pie、area、column)
200     marginRight: 50,            //上下左右空隙(图表跟图框之间)
201     marginBottom: 60,           //下面空隙如果不够大,图例说明有可能看不到
202     plotBackgroundImage: '../graphics/skies.jpg', //(图表的)背景图片
203     plotBackgroundColor:        //背景颜色
204     width: 1000,                //图框(最外层)宽(默认800)
205     height: 500,                //图框高(默认500) 
206     backgroundColor: "red"      //图框的背景颜色
207     borderColor: "red"          //图框的边框颜色
208     borderRadius: 5,            //图框的圆角大小
209     borderWidth: 9,             //图框的边框大小
210     inverted: false,            //(使图)倒置
211     plotBorderColor: "red",     //图表的边框颜色
212     plotBorderWidth: 0,         //图表的边框大小
213     plotShadow: false,          //图表是否使用阴影效果
214     reflow: false,   
215     shadow:true                 //图框是否使用阴影
216     showAxes: false,            //是否最初显示轴
217     spacingTop: 100,            //图表上方的空白
218     spacingRight: 10,
219     spacingBottom: 15,
220     spacingLeft: 10,
221     colors: [...]                 //图上线。。的颜色
222 
223 二. credits的部分相关属性说明
224     credits:  //设置右下角的标记。highchart.com (这个也可以在highcharts.js里中修改)
225     {    
226         //enabled: true,      //是否显示
227         position: {           //显示的位置                   
228             align: 'left',       
229             x: 10                           
230         },
231         text: "xoyo.com",           //显示的文字
232         style:{                     //样式
233             cursor: 'pointer',
234             color: 'red',
235             fontSize: '20px'
236         },
237         href: 'http://www.xoyo.com', //路径
238     },
239 三. title的部分相关属性说明
240     title: //标题
241     { 
242         text: '月份平均温度',
243         x: -20,                  //center //水平偏移量 
244         y: 100                   //y:垂直偏移量
245         align: 'right'         //水平方向(left, right, bottom, top)
246         floating: true,          //是否浮动显示
247         margin: 15,
248         style: ,                 //样式
249         verticalAlign: "left"    //垂直方向(left, right, bottom, top)
250     },
251 四. xAxis或者YAxis的部分相关属性说明
252     categories: ['一月', '二月'],
253     //allowDecimals: false
254     //alternateGridColor: 'red'       //在图表中相隔出现纵向的颜色格栅
255     //dateTimeLabelFormats: ,
256     //endOnTick: false,               //是否显示控制轴末端的一个cagegories出来
257     //events: {
258     //setExtremes:
259     //},
260     //gridLineColor: "red",           //纵向格线的颜色
261     //gridLineDashStyle: Solid        //纵向格栅线条的类型
262     //gridLineWidth: 5,               //纵向格线的的大小
263     //id: null,
264     //labels: {  //X轴的标签(下面的说明)
265         //align: "center",              //位置
266         //enabled: false,               //是否显示
267         //formatter: ,
268         //rotation: 90,                 //旋转,效果就是影响标签的显示方向
269         //staggerLines: 4,              //标签的交错显示(上、下)
270         //step: 2,                      //标签的相隔显示的步长
271         //style:{},
272         //x: 100,                     //偏移量,默认两个都是0,
273         //y: 40
274         
275     //},
276     //lineColor: "red",               //X轴的颜色
277     //lineWidth: 5,                   //X轴的宽度
278     //linkedTo:1,
279     //opposite: true                  //是否把标签显示到对面
280     //max: 12,                        //显示的最大值
281     //maxPadding: 6,
282     //maxZoom: 1,
283     //min: 10,                        //显示的最小值
284     //minorGridLineColor: 'red',        //副格线的颜色
285     //minorGridLineDashStyle: 'blod', //副格线的的颜色
286     //minorGridLineWidth: 50,         //副格线的宽度
287     //minorTickColor: #A0A0A0,        //???没有看出效果
288     minorTickInterval:3,               //副标记的间隔
289     //minorTickLength: 10,             //副标记的长度
290     //minorTickPosition: 'inside',     //副标记的位置
291     //minorTickWidth: 5,               //副标记的宽
292     //minPadding: 0.01,
293     //offset: 0,                       //坐标轴跟图的距离
294     //plotBands: //使某数据块显示不同的效果    
295     //plotLines: [{         //标线属性
296         //value: 0,      //值为0的标线
297     //}],        
298     //tickmarkPlacement: "on",   //标记(文字)显示的位置,on表示在正对位置上。
299     //reversed: true,            //是否倒置
300     //showFirstLabel: false,     //第一个标记的数值是否显示
301     //startOfWeek: 2,
302     //tickColor: 'blue',         //标记(坐标的记号)的颜色
303     //tickInterval: 20,          //标记(坐标的记号)的步长
304     //tickLength: 5,
305     //tickmarkPlacement: "on",
306     //tickPixelInterval: 1000,   //两坐标之间的宽度
307     //tickPosition: "inside",    //坐标标记的方向
308     //title: {                   //设置坐标标题的相关属性
309         //margin: 40,
310         //rotation: 90,
311         //text: "Y-values",
312         //align: "middle",
313         //enabled: "middle",
314         //style: {color: 'red'}
315     //},
316     //type: "linear"
317 五.tooltip的部分相关属性说明
318     tooltip: //提示框设置
319     {      
320         formatter: function() {  //格式化提示框的内容样式
321         return '<b>'+ this.series.name +'</b><br/>'+
322                 this.x +': '+ this.y +'°C';
323         },                       
324         backgroundColor: '#CCCCCC',   //背景颜色
325         //borderColor: '#FCFFC5'      //边框颜色
326         //borderRadius: 2             //边框的圆角大小
327         borderWidth: 3,               //边框宽度(大小)
328         //enabled: false,             //是否显示提示框
329         //shadow: false,              //提示框是否应用阴影  ?没有看出明显效果?????????
330         //shared: true,               //当打开这个属性,鼠标几个某一区域的时候,如果有多条线,所有的线上的据点都会有响应(ipad)
331         //snap: 0,                    //没有看出明显效果?????????
332         crosshairs: {                 //交叉点是否显示的一条纵线
333             width: 2,
334             color: 'gray',
335            dashStyle: 'shortdot'
336         }
337         style: {  //提示框内容的样式
338             color: 'white',
339             padding: '10px',    //内边距 (这个会常用到)
340             fontSize: '9pt',            
341         }
342     },
343 六.legend(图例说明)的部分相关属性说明
344     legend: //图例说明
345     {   
346         //layout: 'vertical',   //图例说明布局(垂直显示,默认横向显示)
347         align: 'center',        //图例说明的显示位置
348         //verticalAlign: 'top', //纵向的位置
349         //x: 250,                 //偏移量 
350         //y: 0,               
351         borderWidth: 1,            //边框宽度
352         //backgroundColor: 'red'   //背景颜色
353         borderColor: 'red',
354         //borderRadius             //边框圆角
355         //enabled: false          //是否显示图例说明
356         //floating:true           //是否浮动显示(效果就是会不会显示到图中)
357         //itemHiddenStyle: {color: 'red'},
358         //itemHoverStyle: {color: 'red'}   //鼠标放到某一图例说明上,文字颜色的变化颜色
359         //itemStyle:  {color: 'red'}   //图例说明的样式
360         //itemWidth:                   //图例说明的宽度
361         //labelFormatter: function() { return this.value}       //?????????????默认(return this.name)
362         //lineHeight: 1000             //没看出明显效果
363         //margin: 20
364         //reversed:true                //图例说明的顺序(是否反向)
365         //shadow:true                  //阴影
366         //style: {color:'black'}
367         //symbolPadding: 100           //标志(线)跟文字的距离
368         //symbolWidth: 100             //标志的宽
369         //width:100
370     },
371 七. plotOptions的部分修改属性说明
372     plotOptions: (我这个是在柱形图上做的测试)
373     {  
374         column: //柱形图
375         {
376             //pointPadding: 0.2,
377             //borderWidth: 1,               //柱子边框的大小
378             //borderColor: "red",           //柱子边框的颜色
379             //borderRadius: 180,            //柱子两端的圆角的半径
380             //colorByPoint: true,           //否应该接受每系列的一种颜色或每点一种颜色
381             groupPadding: 0,                //每一组柱子之间的间隔(会影响到柱子的大小)
382             //minPointLength: 0,            //最小数据值那一条柱子的长度(如果是0,可能看不到,可以设置出来)
383             //pointPadding: 0.1,            //柱子之间的间隔(会影响到柱子的大小)
384             //pointWidth: 2,                //柱子的大小(会影响到柱子的大小)
385             //allowPointSelect: false, 
386             //animation: true,              //图形出来时候的动画
387             //color: 'red',                 //柱子的颜色
388             //connectNulls: false,          //连接图表是否忽略零点(如线形图,数据为0是是否忽略)
389             //cursor: '',                   //?????????游标
390             //dashStyle: null,
391             dataLabels: { //图上是否显示数据标签
392             //enabled: true,
393             align: "center",
394             //color: 'red',
395             formatter: function() 
396             {
397                 return this.y + 'mm'
398             },
399             rotation: 270,
400             //staggerLines: 0,
401             //step: ,
402             //style: ,
403             //x: 0,
404             //y: -6
405             },
406             //enableMouseTracking: 
407             events: {    //事件
408             click: function(event)
409             {
410                 alert(this.name);
411             },
412             //checkboxClick: ,
413             //hide: ,
414             //legendItemClick: ,
415             //mouseOver: ,
416             //mouseOut: ,
417             //show:
418             },
419             //id: null,
420             //lineWidth: 20,
421             //marker: {  //图例说明上的标志
422             //enabled: false
423             //},
424             point: {     //图上的数据点(这个在线形图可能就直观)
425             events: {
426                 click: function() 
427                 {
428                 alert(this.y);
429                 },
430                 //mouseOver: ,
431                 //mouseOut: ,
432                 //remove: ,
433                 //select: ,
434                 //unselect: ,
435                 //update:
436                 }
437             },
438             //pointStart: 0,     //显示图数据点开始值
439             //pointInterval: 1,  //显示图数据点的间隔
440             //selected: false,
441             //shadow: true,
442             //showCheckbox: true,  //是否显示(图例说明的)复选框
443             //showInLegend: false, //是否显示图例说明
444             //stacking: 'percent', //是否堆积???
445             states: 
446             {
447                             hover: 
448                 {
449                                 //brightness: 0.1,
450                                 enabled: true,    //图上的数据点标志是否显示
451                                 //lineWidth: 2,    //没看出效果
452                                 marker: 
453                 {
454                                     //states: ,
455                                     //enabled: true,         //数据点标志是否显示
456                                     //fillColor: null,       //数据点标志填充的颜色
457                                     //lineColor: "#FFFFFF",  //数据点标志线的颜色
458                                     //lineWidth: 0,          //数据点标志线的大小
459                                     //radius: 45,            //数据点标志半径
460                                     //symbol: 'triangle'//'url(http://highcharts.com/demo/gfx/sun.png)' //数据点标志形状(triangle三角形,或者用图片等等)
461                                 }
462                             }
463                      },
464              //stickyTracking: true,  //轨道粘性 (例如线图,如果这个设置为否定,那就必须点到数据点才有反应)
465              //visible: true,         //设置为false就不显示图
466              //zIndex: null           //没有看出效果???
467     },

 

  1. <%@ page language="java" contentType="text/html; charset=UTF-8"  
  2.     pageEncoding="UTF-8"%>  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  4. <html>  
  5. <head>  
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
  7. <title>Highcharts Demo</title>  
  8. <script type="text/javascript" src="js/jquery.min.js"></script>  
  9. <script type="text/javascript" src="js/highcharts.js"></script>  
  10. <script type="text/javascript" src="js/excanvas.compiled.js"></script>  
  11. <script type="text/javascript">  
  12. var chart;  
  13. $(document).ready(function() {  
  14.     chart = new Highcharts.Chart({  
  15.         chart: {  
  16.             renderTo: 'container',//设置显示图表的容器  
  17.             type: 'line',//设置图表样式,可以为line,spline, scatter, splinearea bar,pie,area,column  
  18. //          defaultSeriesType: 'column', //图表的默认样式  
  19. //          margin:[21, 23, 24, 54],//整个图表的位置(上下左右的空隙)  
  20.             marginRight: 200,//右边间距  
  21.             marginBottom: 25//底部间距/空隙  
  22. //          inverted: false,//可选,控制显示方式,默认上下正向显示  
  23. //          shadow:true,//外框阴影  
  24. //          backgroundColor:"#FFF",  
  25. //          animation:true,  
  26. //          borderColor:"#888",  
  27. //          borderRadius:5,  
  28. //          borderWidth:1,  
  29. //          ignoreHiddenSeries:true,  
  30. //          reflow:true,  
  31. //          plotBorderWidth:1,  
  32. //          alignTicks:true  
  33.         },  
  34.         labels:{//在报表上显示的一些文本  
  35.             items:[{  
  36.                 html:'本图表数据有误,仅用于说明相应的属性',  
  37.                 style:{left:'100px',top:'60px'}  
  38.             }, {  
  39.                 html:'http://www.highcharts.com/demo',  
  40.                 style:{left:'100px',top:'100px'}  
  41.             }]  
  42.         },  
  43.         credits:{//右下角的文本  
  44.             enabled: true,  
  45.             position: {//位置设置  
  46.                 align: 'right',  
  47.                 x: -10,  
  48.                 y: -10  
  49.             },  
  50.             href: "http://www.highcharts.com",//点击文本时的链接  
  51.             style: {  
  52.                 color:'blue'  
  53.             },  
  54.             text: "Highcharts Demo"//显示的内容  
  55.         },  
  56. //        plotOptions:{//绘图线条控制  
  57. //            spline:{  
  58. //                allowPointSelect :true,//是否允许选中点  
  59. //                animation:true,//是否在显示图表的时候使用动画  
  60. //                cursor:'pointer',//鼠标移到图表上时鼠标的样式  
  61. //                dataLabels:{  
  62. //                   enabled :true,//是否在点的旁边显示数据  
  63. //                    rotation:0  
  64. //                },  
  65. //                enableMouseTracking:true,//鼠标移到图表上时是否显示提示框  
  66. //                events:{//监听点的鼠标事件  
  67. //                    click: function() {  
  68. //                    }  
  69. //                },  
  70. //                marker:{  
  71. //                    enabled:true,//是否显示点  
  72. //                   radius:3,//点的半径  
  73. //                      fillColor:"#888"  
  74. //                    lineColor:"#000"  
  75. //                    symbol: 'url(http://highcharts.com/demo/gfx/sun.png)',//设置点用图片来显示  
  76. //                    states:{  
  77. //                        hover:{  
  78. //                            enabled:true//鼠标放上去点是否放大  
  79. //                                                    },  
  80. //                        select:{  
  81. //                            enabled:false//控制鼠标选中点时候的状态  
  82. //                        }  
  83. //                    }  
  84. //               },  
  85. //                states:{  
  86. //                    hover:{  
  87. //                        enabled:true,//鼠标放上去线的状态控制  
  88. //                        lineWidth:3  
  89. //                    }  
  90. //                },  
  91. //                stickyTracking:true,//跟踪  
  92. //                visible:true,  
  93. //                lineWidth:2//线条粗细  
  94. //                pointStart:100,  
  95. //            }  
  96. //        },  
  97.   
  98.         title: {  
  99.             text: 'Monthly Average Temperature',//标题  
  100.             x: -20 //center设置标题的位置  
  101.         },  
  102.         subtitle: {  
  103.             text: 'Source: WorldClimate.com',//副标题  
  104.             x: -20//副标题位置  
  105.         },  
  106.         xAxis: {//横轴的数据  
  107.             categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',  
  108.                 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']  
  109. //          lineWidth:1,//纵轴一直为空所对应的轴,即X轴  
  110. //          plotLines: [{//一条竖线  
  111. //               color: '#FF0000',  
  112. //               width: 2,  
  113. //               value: 5.5  
  114. //           }]  
  115. //          labels: {//设置横轴坐标的显示样式  
  116. //              rotation: -45,//倾斜度  
  117. //              align: 'right',  
  118. //              style: {  
  119. //                   font: 'normal 13px Verdana, sans-serif'  
  120. //                   color: 'white'  
  121. //              }  
  122. //          }  
  123.   
  124.         },  
  125.         yAxis: {  
  126. //          tickInterval: 200,  //自定义刻度  
  127. //          max:1000,//纵轴的最大值  
  128. //          min: 0,//纵轴的最小值  
  129.             title: {//纵轴标题  
  130.                 text: '百分数'  
  131.             },  
  132.             labels : {  
  133.                 formatter : function() {//设置纵坐标值的样式  
  134.                  return this.value + '%';  
  135.                 }  
  136.                },   
  137.             plotLines: [{  
  138.                 value: 0,  
  139.                 width: 1,  
  140.                 color: '#808080'  
  141.             }]  
  142.         },  
  143.         tooltip: {//鼠标移到图形上时显示的提示框  
  144.             formatter: function() {  
  145.                     return '<b>'+ this.series.name +'</b><br/>'+  
  146.                     this.x +': '+ this.y +'°C';  
  147.             }  
  148. //          crosshairs:[{//控制十字线  
  149. //              width:1,  
  150. //              color:"#CCC",  
  151. //              dashStyle:"longdash"  
  152. //          }  
  153.   
  154.         },  
  155.         legend: {//方框所在的位置(不知道怎么表达)  
  156.             layout: 'vertical',  
  157.             align: 'right',  
  158.             verticalAlign: 'top',  
  159.             x: -10,  
  160.             y: 100,  
  161.             borderWidth: 0  
  162.         },  
  163.         series: [{//以下为纵轴数据  
  164.             name: 'Tokyo',  
  165.             data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]  
  166.         }, {  
  167.             name: 'New York',  
  168.             data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]  
  169.         }, {  
  170.             name: 'Berlin',  
  171.             data: [-0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]  
  172.         }, {  
  173.             name: 'London',  
  174.             data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]  
  175.         }]  
  176.     });  
  177. });  
  178. </script>  
  179. </head>  
  180. <body>  
  181. <div id="container" ></div>  
  182. </body>  
  183. </html> 

 

 

 

 

 

属性说明【部分】

一.chart的部分相关属性说明
    renderTo: 'container',      //图表的页面显示容器(也就是要显示到的div)
    defaultSeriesType: 'line',  //图表类型(line、spline、scatter、splinearea、bar、pie、area、column)
    marginRight: 50,            //上下左右空隙(图表跟图框之间)
    marginBottom: 60,           //下面空隙如果不够大,图例说明有可能看不到
    plotBackgroundImage: '../graphics/skies.jpg', //(图表的)背景图片
    plotBackgroundColor:        //背景颜色
    width: 1000,                //图框(最外层)宽(默认800)
    height: 500,                //图框高(默认500) 
    backgroundColor: "red"      //图框的背景颜色
    borderColor: "red"          //图框的边框颜色
    borderRadius: 5,            //图框的圆角大小
    borderWidth: 9,             //图框的边框大小
    inverted: false,            //(使图)倒置
    plotBorderColor: "red",     //图表的边框颜色
    plotBorderWidth: 0,         //图表的边框大小
    plotShadow: false,          //图表是否使用阴影效果
    reflow: false,   
    shadow:true                 //图框是否使用阴影
    showAxes: false,            //是否最初显示轴
    spacingTop: 100,            //图表上方的空白
    spacingRight: 10,
    spacingBottom: 15,
    spacingLeft: 10,
    colors: [...]                 //图上线。。的颜色

二. credits的部分相关属性说明
    credits:  //设置右下角的标记。highchart.com (这个也可以在highcharts.js里中修改)
    {    
        //enabled: true,      //是否显示
        position: {           //显示的位置                   
            align: 'left',       
            x: 10                           
        },
        text: "xoyo.com",           //显示的文字
        style:{                     //样式
            cursor: 'pointer',
            color: 'red',
            fontSize: '20px'
        },
        href: 'http://www.xoyo.com', //路径
    },
三. title的部分相关属性说明
    title: //标题
    { 
        text: '月份平均温度',
        x: -20,                  //center //水平偏移量 
        y: 100                   //y:垂直偏移量
        align: 'right'         //水平方向(left, right, bottom, top)
        floating: true,          //是否浮动显示
        margin: 15,
        style: ,                 //样式
        verticalAlign: "left"    //垂直方向(left, right, bottom, top)
    },
四. xAxis或者YAxis的部分相关属性说明
    categories: ['一月', '二月'],
    //allowDecimals: false
    //alternateGridColor: 'red'       //在图表中相隔出现纵向的颜色格栅
    //dateTimeLabelFormats: ,
    //endOnTick: false,               //是否显示控制轴末端的一个cagegories出来
    //events: {
    //setExtremes:
    //},
    //gridLineColor: "red",           //纵向格线的颜色
    //gridLineDashStyle: Solid        //纵向格栅线条的类型
    //gridLineWidth: 5,               //纵向格线的的大小
    //id: null,
    //labels: {  //X轴的标签(下面的说明)
        //align: "center",              //位置
        //enabled: false,               //是否显示
        //formatter: ,
        //rotation: 90,                 //旋转,效果就是影响标签的显示方向
        //staggerLines: 4,              //标签的交错显示(上、下)
        //step: 2,                      //标签的相隔显示的步长
        //style:{},
        //x: 100,                     //偏移量,默认两个都是0,
        //y: 40
        
    //},
    //lineColor: "red",               //X轴的颜色
    //lineWidth: 5,                   //X轴的宽度
    //linkedTo:1,
    //opposite: true                  //是否把标签显示到对面
    //max: 12,                        //显示的最大值
    //maxPadding: 6,
    //maxZoom: 1,
    //min: 10,                        //显示的最小值
    //minorGridLineColor: 'red',        //副格线的颜色
    //minorGridLineDashStyle: 'blod', //副格线的的颜色
    //minorGridLineWidth: 50,         //副格线的宽度
    //minorTickColor: #A0A0A0,        //???没有看出效果
    minorTickInterval:3,               //副标记的间隔
    //minorTickLength: 10,             //副标记的长度
    //minorTickPosition: 'inside',     //副标记的位置
    //minorTickWidth: 5,               //副标记的宽
    //minPadding: 0.01,
    //offset: 0,                       //坐标轴跟图的距离
    //plotBands: //使某数据块显示不同的效果    
    //plotLines: [{         //标线属性
        //value: 0,      //值为0的标线
    //}],        
    //tickmarkPlacement: "on",   //标记(文字)显示的位置,on表示在正对位置上。
    //reversed: true,            //是否倒置
    //showFirstLabel: false,     //第一个标记的数值是否显示
    //startOfWeek: 2,
    //tickColor: 'blue',         //标记(坐标的记号)的颜色
    //tickInterval: 20,          //标记(坐标的记号)的步长
    //tickLength: 5,
    //tickmarkPlacement: "on",
    //tickPixelInterval: 1000,   //两坐标之间的宽度
    //tickPosition: "inside",    //坐标标记的方向
    //title: {                   //设置坐标标题的相关属性
        //margin: 40,
        //rotation: 90,
        //text: "Y-values",
        //align: "middle",
        //enabled: "middle",
        //style: {color: 'red'}
    //},
    //type: "linear"
五.tooltip的部分相关属性说明
    tooltip: //提示框设置
    {      
        formatter: function() {  //格式化提示框的内容样式
        return '<b>'+ this.series.name +'</b><br/>'+
                this.x +': '+ this.y +'°C';
        },                       
        backgroundColor: '#CCCCCC',   //背景颜色
        //borderColor: '#FCFFC5'      //边框颜色
        //borderRadius: 2             //边框的圆角大小
        borderWidth: 3,               //边框宽度(大小)
        //enabled: false,             //是否显示提示框
        //shadow: false,              //提示框是否应用阴影  ?没有看出明显效果?????????
        //shared: true,               //当打开这个属性,鼠标几个某一区域的时候,如果有多条线,所有的线上的据点都会有响应(ipad)
        //snap: 0,                    //没有看出明显效果?????????
        crosshairs: {                 //交叉点是否显示的一条纵线
            width: 2,
            color: 'gray',
           dashStyle: 'shortdot'
        }
        style: {  //提示框内容的样式
            color: 'white',
            padding: '10px',    //内边距 (这个会常用到)
            fontSize: '9pt',            
        }
    },
六.legend(图例说明)的部分相关属性说明
    legend: //图例说明
    {   
        //layout: 'vertical',   //图例说明布局(垂直显示,默认横向显示)
        align: 'center',        //图例说明的显示位置
        //verticalAlign: 'top', //纵向的位置
        //x: 250,                 //偏移量 
        //y: 0,               
        borderWidth: 1,            //边框宽度
        //backgroundColor: 'red'   //背景颜色
        borderColor: 'red',
        //borderRadius             //边框圆角
        //enabled: false          //是否显示图例说明
        //floating:true           //是否浮动显示(效果就是会不会显示到图中)
        //itemHiddenStyle: {color: 'red'},
        //itemHoverStyle: {color: 'red'}   //鼠标放到某一图例说明上,文字颜色的变化颜色
        //itemStyle:  {color: 'red'}   //图例说明的样式
        //itemWidth:                   //图例说明的宽度
        //labelFormatter: function() { return this.value}       //?????????????默认(return this.name)
        //lineHeight: 1000             //没看出明显效果
        //margin: 20
        //reversed:true                //图例说明的顺序(是否反向)
        //shadow:true                  //阴影
        //style: {color:'black'}
        //symbolPadding: 100           //标志(线)跟文字的距离
        //symbolWidth: 100             //标志的宽
        //width:100
    },
七. plotOptions的部分修改属性说明
    plotOptions: (我这个是在柱形图上做的测试)
    {  
        column: //柱形图
        {
            //pointPadding: 0.2,
            //borderWidth: 1,               //柱子边框的大小
            //borderColor: "red",           //柱子边框的颜色
            //borderRadius: 180,            //柱子两端的圆角的半径
            //colorByPoint: true,           //否应该接受每系列的一种颜色或每点一种颜色
            groupPadding: 0,                //每一组柱子之间的间隔(会影响到柱子的大小)
            //minPointLength: 0,            //最小数据值那一条柱子的长度(如果是0,可能看不到,可以设置出来)
            //pointPadding: 0.1,            //柱子之间的间隔(会影响到柱子的大小)
            //pointWidth: 2,                //柱子的大小(会影响到柱子的大小)
            //allowPointSelect: false, 
            //animation: true,              //图形出来时候的动画
            //color: 'red',                 //柱子的颜色
            //connectNulls: false,          //连接图表是否忽略零点(如线形图,数据为0是是否忽略)
            //cursor: '',                   //?????????游标
            //dashStyle: null,
            dataLabels: { //图上是否显示数据标签
            //enabled: true,
            align: "center",
            //color: 'red',
            formatter: function() 
            {
                return this.y + 'mm'
            },
            rotation: 270,
            //staggerLines: 0,
            //step: ,
            //style: ,
            //x: 0,
            //y: -6
            },
            //enableMouseTracking: 
            events: {    //事件
            click: function(event)
            {
                alert(this.name);
            },
            //checkboxClick: ,
            //hide: ,
            //legendItemClick: ,
            //mouseOver: ,
            //mouseOut: ,
            //show:
            },
            //id: null,
            //lineWidth: 20,
            //marker: {  //图例说明上的标志
            //enabled: false
            //},
            point: {     //图上的数据点(这个在线形图可能就直观)
            events: {
                click: function() 
                {
                alert(this.y);
                },
                //mouseOver: ,
                //mouseOut: ,
                //remove: ,
                //select: ,
                //unselect: ,
                //update:
                }
            },
            //pointStart: 0,     //显示图数据点开始值
            //pointInterval: 1,  //显示图数据点的间隔
            //selected: false,
            //shadow: true,
            //showCheckbox: true,  //是否显示(图例说明的)复选框
            //showInLegend: false, //是否显示图例说明
            //stacking: 'percent', //是否堆积???
            states: 
            {
                            hover: 
                {
                                //brightness: 0.1,
                                enabled: true,    //图上的数据点标志是否显示
                                //lineWidth: 2,    //没看出效果
                                marker: 
                {
                                    //states: ,
                                    //enabled: true,         //数据点标志是否显示
                                    //fillColor: null,       //数据点标志填充的颜色
                                    //lineColor: "#FFFFFF",  //数据点标志线的颜色
                                    //lineWidth: 0,          //数据点标志线的大小
                                    //radius: 45,            //数据点标志半径
                                    //symbol: 'triangle'//'url(http://highcharts.com/demo/gfx/sun.png)' //数据点标志形状(triangle三角形,或者用图片等等)
                                }
                            }
                     },
             //stickyTracking: true,  //轨道粘性 (例如线图,如果这个设置为否定,那就必须点到数据点才有反应)
             //visible: true,         //设置为false就不显示图
             //zIndex: null           //没有看出效果???
    },

转载于:https://www.cnblogs.com/xiaoguoblog/p/5025664.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值