chartseries.js jquery plugin
August 3, 2011 by OscarThis widget allows you to create highcharts series in a easy and effortless way.
Features:
- Easy way to create any xAxis, yAxis or Highchart series
- Adds basic default options if none of them are being passed on
- Easily to add Highchart additional options as a parameter
createSerie Parameters:
- type : ‘string’
- String that defines the series type like ‘line’ or ‘column’
- data : []
- Array with the corresponding data for the serie
- options : {}
- Object with additional options to be passed on the series like {color: “#0044d6″}
- yAxisIndex : Integer
- In case we are using multiple yAxis this number defines the corresponding yAxis
- name : ‘string’
- String that defines the series name
createyAxis Parameters:
- name : ‘string’
- String that defines the yseries name
- maxvalue : Number
- Defines the max value on the axis, null if we don’t want to have any axis limit
- axisColor : ‘string’
- Defines axis color
- options : {}
- Object with additional options to be passed on the axis like {formatter: function(){return “$” + this.value}}
createxAxis Parameters:
- categories : []
- Array that defines the corresponding values on the x axis
- axisWidth : Number
- Defines the value for the axis line width
- axisColor : ‘string’
- Defines axis color
- options : {}
- Object with additional options to be passed on the axis like {formatter: function(){return “$” + this.value}}
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
