Highcharts相关属性

属性说明【部分】
 
一.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: ཐpx'
        },
        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: ཆpx',    //内边距 (这个会常用到)
            fontSize: Əpt',           
        }
    },
六.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           //没有看出效果???

    },

chart.events.addSeries:添加数列到图表中。
002.chart.events.click:整个图表的绘图区上所发生的点击事件。
003.chart.events.load:图表加载事件。
004.chart.events.redraw:图表重画事件,当点击图注显示和隐藏绘图时可以触发。
005.chart.events.selection:当图表曲线可选择放大时,当选择图表操作时,可以触发该事件。
006.chart.height:所绘制图表的高度值。
007.chart.inverted:图表中的x,y轴对换。
008.chart.polar:是否为极性图表。
009.chart.reflow:当窗口大小改变时,图表宽度自适应窗口大小改变。
010.chart.renderTo:图表加载的位置,是页面上的一个DOM对象。
011.chart.showAxes:在空白图表中,是否显示坐标轴。
012.chart.type:图表的类型,默认为line,还有bar/column/pie……
013.chart.width:图表绘图区的宽度,默认为自适应。
014.chart.zoomType:图表中数据报表的放大类型,可以以X轴放大,或是以Y轴放大,还可以以XY轴同时放大。
015.colors:图表中多数列时,各数列之间的颜色。是一个数组,一般不动。
016.credits.enabled:是否允许显示版权信息。
017.credits.href:版权所有的链接。
018.credits.text:版权信息显示文字。
019.exporting.buttons.exportButton.enabled:是否允许显示导出按钮。
020.exporting.buttons.exportButton.menuItems:导出按钮的菜单选项。
021.exporting.buttons.exportButton.onclick:导出按钮被点击的事件,不是内部的菜单。
022.exporting.buttons.printButton.enabled:是否允许打印按钮。
023.exporting.buttons.printButton.onclick:打印按钮的点击事件。
024.exporting.enabled:打印和导出按钮是否被允许。
025.exporting.filename:被导出文件的文件名。
026.exporting.type:默认导出图片的文件格式。
027.exporting.url:SVG图表转换并导出的接口处理地址。
028.exporing.width:默认导出图片的宽度。
029.labels:标签,可以加载到图表的任何位置,里面有items,style。
030.lang:语言参数配置,与导出按钮菜单有关的配置,时间名称的配置等。
031.legend.enabled:是否允许图注。
032.navigation.buttonOptions.enabled:图表中所有导航中的按钮是否可被点击。
033.plotOptions.area.allowPointSelect:是否允许数据点的点击。
034.plotOptions.area.color:绘图的颜色。
035.plotOptions.area.dataLabels.enabled:是否允许数据标签。
036.plotOptions.area.enableMouseTracking:是否允许数据图表中,数据点的鼠标跟踪气泡显示。
037.plotOptions.area.events.checkboxClick:数据图表中图注中复选框的点击事件。
038.plotOptions.area.events.click:数据图表中,数据点的点击事件。
039.plotOptions.area.events.hide:数据图表中,某一数据序列隐藏时的事件。
040.plotOptions.area.events.show:数据图表中,某一数据序列显示时的事件。
041.
042.plotOptions.area.events.legendItemClick:数据图表中,图注中的项目被点击时的事件,直接赋值false,则不可点击。
043.plotOptions.area.events.mouseOut:数据点的鼠标移出事件。
044.plotOptions.area.events.mouseOver:数据点的鼠标经过事件。
045.
046.plotOptions.area.marker.enabled:图表中绘图中是否显示点的标记符。
047.plotOptions.area.marker.states.hover.enabled:是否允许标记符的鼠标经过状态。
048.plotOptions.area.marker.states.select.enabled:是否允许标记符的选择状态。
049.plotOptions.area.point.events.click:图表中每一个单独的点点击事件。
050.plotOptions.area.point.events.mouseOut
051.plotOptions.area.point.events..mouseOver
052.plotOptions.area.point.events.remove:删除图表中的点时的事件。
053.plotOptions.area.point.events.select:图表中点选择事件。
054.plotOptions.area.point.events.unselect:图表中点取消选择时的事件。
055.plotOptions.area.point.events.update:图表中数据发生更新时的事件。
056.plotOptions.area.visible:加载时,数据序列默认是显示还是隐藏。
057.plotOptions.area.zIndex:在多序列的情况下,调整每一个序列的层叠顺序。
058.以上的point.events同样还适用于其他面积类图表(arearange、areaspline、areasplinerange),其他的柱状图(bar、column)及所有图表。
059.plotOptions.area.showInLegend:是否在图注中显示。
060.plotOptions.area.stacking:是以值堆叠,还是以百分比堆叠。
061.plotOptions.area.states.hover.enabled:鼠标放上的状态是否允许。
062.plotOptions.area.stickyTracking:鼠标粘性跟踪数据点。
063.plotOptions.arearange,plotOptions.areaspline,plotOptions.areasplinerange类同于plotOptions.area
064.plotOptions.bar.groupPadding:对于柱状图分组,每个分组之间的间隔。
065.plotOptions.bar.grouping:是否对数据进行分组。
066.plotOptions.bar.minPointLength::定义当point值为零时,点的最小长度为多少
067.plotOptions.bar.showInLegend:是否在图注中显示。
068.plotOptions.bar.stacking:是以值堆叠,还是以百分比堆叠(normal/percent)。
069.plotOptions.column,plotOptions.columnrange类同于plotOptions.bar
070.plotOptions.line的相关配置类似于plotOptions.area配置。
071.plotOptions.pie.ignoreHiddenPoint:在饼状图中,某一个序列经图注点击隐藏后,整个饼状图是重新以100%分配,还是只在原图基础上隐藏,呈现一个缺口。
072.plotOptions.pie.innerSize:绘制饼状图时,饼状图的圆心预留多大的空白。
073.plotOptions.pie.slicedOffset:与allowPointSelect结合使用,当点被点击时,对应的扇区剥离,这个参数即配置离开的距离。
074.plotOptions.pie的其他常用配置参数类同于plotOptions.area。
075.plotOptions.scatter,plotOptions.series,plotOptions.spline的相关配置类似于plotOptions.area配置。
076.series:是一个数组。
077.series.data.color:某一个数据的颜色。
078.series.data.dataLabels:序列中某一个数据的数据标签。
079.series.data.events类同于plotOptions.area.point.events的相关配置。
080.series.data.marker类同于plotOptions.area.marker的相关配置。
081.series.data.name:配置数据点的名称。
082.series.data.sliced:配置在饼图中,扇区的分离距离大小。
083.series.data.x:点的x值。
084.series.data.y:点的y值。
085.series.name:数据序列的名称。
086.series.stack:堆叠的分组索引。
087.series.type:数据序列的展示类型。
088.series.xAxis,series.yAxis:当使用多坐标轴时,指定某个数列对应哪个坐标轴。
089.subtitle:配置图表的子标题。
090.title:配置图表的标题。
091.tooltip:配置图表中数据的气泡提示。
092.tooltip.valueDecimals:允许的小数点位数。
093.tooltip.percentageDecimals:允许百分比的小数点后位数。
094.xAxis,yAxis配置设置坐标轴
095.allowDecimals:坐标轴上是否允许小数。
096.categories:是一个数组,坐标轴的分类。
097.plotLines:绘制主线。
098.tickColor:刻度颜色。
099.tickInterval:刻度的步进值。
100.labels.rotation:刻度标签旋转度数

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值