hightChart中文API

注:这里只是提供部分中文解释,方便程序员对比查看官方的API


HighCharts整体结构

通过查看API文档我们知道HighCharts结构如下:(API文档在文章后面提供下载)

var chart = new Highcharts.Chart({

       chart: {…}              // 配置chart图表区

       colors: [{...}]    // 配置主体显示颜色(多个线条和柱体的颜色顺序的)

       credits: {…}     // 配置右下角版权链接

       exporting: {…}  // 配置导出及打印

       global: {…}      // Highcharts.SetOptions方法调用

       labels: {…}        // HTML标签,可以放置在绘图的任何位置

       lang: {…}        // 语言对象属性配置

       legend: {…}         // 配置图例选项

       loading: {…}    // 配置图表加载选项

       navigation: {…} // 配置导出按钮属性

       pane: {…}        // 仅适用于极性图表和角仪表

       plotOptions: {…}          // 配置数据点选项

       series: [{...}]               // 配置数据列选项

       subtitle: {…}   // 配置副标题

       title: {…}                  // 配置标题

       tooltip: {…}               // 配置数据点提示框

    xAxis: {…}              // 配置x轴选项

       yAxis: {…}              // 配置y轴选项

})

    上面红色部分是图标完整性及美观必须自己配置的选项,其他选项无特殊需要默认就行,也就是不用配置,所以开发HighCharts是不是很简单,只需要配置简单的几个选项就行,下面详细讲解每个选项的配置。

三、HighCharts每部分详细配置

1chart :图表区选项

              主要设置图表的类型,图表装载容器名,背景,高度,宽度等图表的整体属性。

参数描述默认值
backgroundColor设置图表区背景色#FFFFFF
borderWidth设置图表边框宽度0
borderRadius设置图表边框圆角角度5
renderTo图表放置的容器,一般在html中放置一个DIV,获取DIVid属性值null
defaultSeriesType默认图表类型line, spline, area, areaspline,
column, bar, pie , scatter
0
width图表宽度,默认根据图表容器自适应宽度null
height图表高度,默认根据图表容器自适应高度null
margin设置图表与其他元素之间的间距,数组,如[0,0,0,0][null]
plotBackgroundColor主图表区背景色,即X轴与Y轴围成的区域的背景色null
plotBorderColor主图表区边框的颜色,即X轴与Y轴围成的区域的边框颜色null
plotBorderWidth主图表区边框的宽度0
shadow是否设置阴影,需要设置背景色backgroundColorfalse
reflow是否自使用图表区域高度和宽度,如果没有设置widthheight时,会自适应大小true
zoomType拖动鼠标进行缩放,沿x轴或y轴进行缩放,可以设置为:‘x’,'y’,'xy’
events事件回调,支持addSeries方法,click方法,load方法,selection方法等的回调函数 

 

2colors :数据列颜色选项

    主要是数据列颜色设置,比如多条线条中的每个线条颜色。

参数描述默认
color用于展示图表,折线/柱状/饼状等图的颜色,数组形式。

一组html颜色代码

        

colors: [
                 '#058DC7',
                 '#50B432',
                 '#ED561B',
                  '#DDDF00',
                 '#24CBE5', 
                 '#64E572',
                 '#FF9655',
                 '#FFF263',
                 '#6AF9C4'
    ]

说明:1、颜色代码为html标准,可通过DW等复制想要的代码

2、默认是从第一个数据列起调用第一个颜色代码,有多少个数

据列调用相应数量的颜色

3、当数据列大于默认颜色数量时,重复从第一个颜色看是调用

 

3credits :版权链接选项

参数描述默认值
enabled是否显示版权及链接,布尔型,默认为显示true
position位置。可用align调整对齐方式,x,y设置距离。position: {align: ‘right’,x: -10,
         verticalAlign: ‘bottom’,y: -5 }
href链接地址。String型,默认是highCharts官网www.highcharts.com
style名片CSS模式

itemStyle : {

cursor: ‘pointer’,color: ‘#909090′,

fontSize: ’10px’ }

text显示名字。highcharts.com

 

 

4exporting :导出及打印选项

参数描述默认值
buttons打印和导出按钮设置。其中两个按钮中又有很多样式等设置,如有需要可详细查看API文档默认按钮样式
enableImages在导出的图片中添加logo水印。布尔型,默认是falsefalse
enabled是否显示按钮(也就是启用打印导出功能),布尔型,默认显示true
filename导出图片文件名,String型chart
type导出图片的格式,有jpg和png可选,String型jpg/png
url转换图片的服务器url,默认是用highcharts服务器http://export.highcharts.com
width图片大小,数字型800

5global Highcharts.SetOptions方法调用

    全局选项,并不适用于每一个图表。这些选项,如lang选项,必须设置使用Highcharts.setOptions方法。一般用不到,详情请查看API文档。

6labels HTML标签(可放置在图表的任意地方)

参数描述默认值
items包含两个选项html和style,分别代表html语句及样式iteml :{

 

 

 

 

    html : “”,

    style {
            left: ’100px’,top: ’100px’}

  }

stylecss样式

style:{ color : ‘#3E576F’}

7lang :语言配置选项,主要配置符号、导出时显示的语句、时间显示语言等。和上面的global参数有关,即调用Highcharts.SetOptions方法。下表列举常用的选项注意:lang选项其实就是配置一些显示语言,API中都有详细说明。

参数描述默认值
decimalPoint小数点.
downloadJPEG导出显示的文字,下面还有downloadPDF等,都一样Download JPEG image等
months月份,字符串数组形式

['January' 'February', 'March', 'April', 'May', 'June', 'July',

'August', 'September', 'October', 'November', 'December']

numericSymbols数值单位,比如1000为1k['k', 'M', 'G', 'T', 'P', 'E']

8legend :图例选项,即数据类标示。

参数描述默认值
layout显示形式,支持水平horizontal和垂直verticalhorizontal
align对齐方式center
backgroundColor背景颜色nulll
borderColor图例边框颜色#909090
borderRadius图例边框角度5
enabled是否显示图例true
floating是否可以浮动,配合x,y属性false
shadow是否显示阴影false
style图例样式详见API文档

9loading: 图表加载选项

参数描述默认值
hideDuration淡出效果持续时间,以毫秒为单位100
labelStyle标签样式,css形式详见API文档
showDuration淡入效果持续时间,以毫秒100
style图表加载样式详见API文档

10navigation  导出按钮选项,配置导出按钮及打印样式等,详见API文档。

11pane 极性图表和角仪表选项配置(这两种表是在新版本2.0.1新增加的选项)

12plotOptions :数据点选项。分不同图表类型配置不同,下面就常用的选项及spline选项列表如下

参数描述默认值
enable是否在数据点上直接显示数据false
allowPointSelect是否允许使用鼠标选中数据点false
formatter回调函数,格式化数据显示内容formatter: function()  { return this.y; }
marker对某个点标记,多种样式可选 

13series :数据列选项

参数描述默认值
data显示在图表中的数据列,可以为数组或者JSON格式的数据。如:data:[0, 5, 3, 5],或
data: [{name: 'Point 1',y: 0}, {name: 'Point 2',y: 5}]
‘’
name数据列名称‘’
type数据列类型,支持 area, areaspline, bar, column, line, pie, scatter、splineline

14subtitle  副标题选项。和title配置一样,在title中详细讲解

15title  标题选项

参数描述默认值
text标题文本内容Chart title
align水平对齐方式center
verticalAlign垂直对齐方式top
margin标题与副标题之间或者主图表区间的间距15
floating是否浮动,如果为true,则标题可以偏离主图表区,可配合x,y属性使用false
stylecss样式

{ color: ‘#3E576F’, 
          fontSize: ’16px’}

x按照水平对齐方式的距离0
y按照垂直对齐方式的距离15

16tooltip :数据点提示框选项

参数描述默认值
enable是否显示提示框true
backgroundColor设置提示框的背景色rgba(255, 255, 255, .85)
borderColor提示框边框颜色,默认自动匹配数据列的auto
borderRadius提示框圆角度5
shadow设置提示框内容样式,如字体颜色等color:’#333′
formatter

回调函数,用于格式化输出提示框的显示内容

返回的内容支持html标签如:<b>, <strong>,<br/>

 

17xAxis x轴选项

参数描述默认
categories

设置X轴分类名称,数组,例如:

categories: ['Apples', 'Bananas', 'Oranges']

[]

title

X轴名称,支持text、enabled、align、rotation、style等属性

 

 

labels

设置X轴各分类名称的样式style,格式formatter,角度rotation等

 

max

X轴最大值(categories为空时),如果为null,

则最大值会根据X轴数据自动匹配一个最大值

 

null

min

X轴最小值(categories为空时),如果为null,

则最小值会根据X轴数据自动匹配一个最小值

 

null

gridLineColor

网格(竖线)颜色

 

#C0C0C0

gridLineWidth

网格(竖线)宽度

1

lineColor

基线颜色

#C0D0E0

lineWidth

基线宽度

0

18yAxis y轴选项

      和x轴配置相同或类似。

 

        注意:1、以上所有参数如果没特殊要求,及为默认是,可不用再代码中配置

                2、API中还有更多的配置选项,可通过阅读API了解详细

                3、红色部分为主要配置内容
 

<script type="text/javascript">  
var chart;  
$(document).ready(function() {  
    chart = new Highcharts.Chart({  
        chart: {  
            renderTo: 'container',//设置显示图表的容器  
            type: 'line',//设置图表样式,可以为line,spline, scatter, splinearea bar,pie,area,column  
//          defaultSeriesType: 'column', //图表的默认样式  
//          margin:[21, 23, 24, 54],//整个图表的位置(上下左右的空隙)  
            marginRight: 200,//右边间距  
            marginBottom: 25//底部间距/空隙  
//          inverted: false,//可选,控制显示方式,默认上下正向显示  
//          shadow:true,//外框阴影  
//          backgroundColor:"#FFF",  
//          animation:true,  
//          borderColor:"#888",  
//          borderRadius:5,  
//          borderWidth:1,  
//          ignoreHiddenSeries:true,  
//          reflow:true,  
//          plotBorderWidth:1,  
//          alignTicks:true  
        },  
        labels:{//在报表上显示的一些文本  
            items:[{  
                html:'本图表数据有误,仅用于说明相应的属性',  
                style:{left:'100px',top:'60px'}  
            }, {  
                html:'http://www.highcharts.com/demo',  
                style:{left:'100px',top:'100px'}  
            }]  
        },  
        credits:{//右下角的文本  
            enabled: true,  
            position: {//位置设置  
                align: 'right',  
                x: -10,  
                y: -10  
            },  
            href: "http://www.highcharts.com",//点击文本时的链接  
            style: {  
                color:'blue'  
            },  
            text: "Highcharts Demo"//显示的内容  
        },  
//        plotOptions:{//绘图线条控制  
//            spline:{  
//                allowPointSelect :true,//是否允许选中点  
//                animation:true,//是否在显示图表的时候使用动画  
//                cursor:'pointer',//鼠标移到图表上时鼠标的样式  
//                dataLabels:{  
//                   enabled :true,//是否在点的旁边显示数据  
//                    rotation:0  
//                },  
//                enableMouseTracking:true,//鼠标移到图表上时是否显示提示框  
//                events:{//监听点的鼠标事件  
//                    click: function() {  
//                    }  
//                },  
//                marker:{  
//                    enabled:true,//是否显示点  
//                   radius:3,//点的半径  
//                      fillColor:"#888"  
//                    lineColor:"#000"  
//                    symbol: 'url(http://highcharts.com/demo/gfx/sun.png)',//设置点用图片来显示  
//                    states:{  
//                        hover:{  
//                            enabled:true//鼠标放上去点是否放大  
//                                                    },  
//                        select:{  
//                            enabled:false//控制鼠标选中点时候的状态  
//                        }  
//                    }  
//               },  
//                states:{  
//                    hover:{  
//                        enabled:true,//鼠标放上去线的状态控制  
//                        lineWidth:3  
//                    }  
//                },  
//                stickyTracking:true,//跟踪  
//                visible:true,  
//                lineWidth:2//线条粗细  
//                pointStart:100,  
//            }  
//        },  
  
        title: {  
            text: 'Monthly Average Temperature',//标题  
            x: -20 //center设置标题的位置  
        },  
        subtitle: {  
            text: 'Source: WorldClimate.com',//副标题  
            x: -20//副标题位置  
        },  
        xAxis: {//横轴的数据  
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',  
                'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']  
//          lineWidth:1,//纵轴一直为空所对应的轴,即X轴  
//          plotLines: [{//一条竖线  
//               color: '#FF0000',  
//               width: 2,  
//               value: 5.5  
//           }]  
//          labels: {//设置横轴坐标的显示样式  
//              rotation: -45,//倾斜度  
//              align: 'right',  
//              style: {  
//                   font: 'normal 13px Verdana, sans-serif'  
//                   color: 'white'  
//              }  
//          }  
  
        },  
        yAxis: {  
//          tickInterval: 200,  //自定义刻度  
//          max:1000,//纵轴的最大值  
//          min: 0,//纵轴的最小值  
            title: {//纵轴标题  
                text: '百分数'  
            },  
            labels : {  
                formatter : function() {//设置纵坐标值的样式  
                 return this.value + '%';  
                }  
               },   
            plotLines: [{  
                value: 0,  
                width: 1,  
                color: '#808080'  
            }]  
        },  
        tooltip: {//鼠标移到图形上时显示的提示框  
            formatter: function() {  
                    return '<b>'+ this.series.name +'</b><br/>'+  
                    this.x +': '+ this.y +'°C';  
            }  
//          crosshairs:[{//控制十字线  
//              width:1,  
//              color:"#CCC",  
//              dashStyle:"longdash"  
//          }  
  
        },  
        legend: {//方框所在的位置(不知道怎么表达)  
            layout: 'vertical',  
            align: 'right',  
            verticalAlign: 'top',  
            x: -10,  
            y: 100,  
            borderWidth: 0  
        },  
        series: [{//以下为纵轴数据  
            name: 'Tokyo',  
            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]  
        }, {  
            name: 'New York',  
            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]  
        }, {  
            name: 'Berlin',  
            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]  
        }, {  
            name: 'London',  
            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]  
        }]  
    });  
});  
</script>

属性说明【部分】

一.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           //没有看出效果???
    },

官方在线APIhttp://api.highcharts.com/highcharts


  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值