Method 1: Using Class -
//(Note: Pie/donut graphs can only be created with one dataset, and combo graphs only with multiple)
var bar = new GraphBar({ //options
attachTo: '#wrapper',
height: 375,
width: 775,
xDist: 90,
legend: true,
design: { //css styling
gridColor: 'grey',
tooltipBoxColor: 'white',
}
});
bar.init(); //actually create it
Method 1: Using jQuery Plugin -
//creates same graph as previous method, but with change buttons
$('#wrapper').graphify({
start: 'bar', //show bar graph first
obj: { //graph options
height: 375,
width: 775,
xDist: 90,
legend: true,
design: { //css styling
gridColor: 'grey',
tooltipBoxColor: 'white',
}
}
});
To change graph type with class:
barGraph.to('linear'); //changing the type of a graph
Getting all graph information:
graph.getData();
Graph Options (Note: Anything not specified is defaulted; Some options will be migrated to the design object soon)
- id: Give an ID to your graph (SVG tag)
- width, height: Set width and height of the graph.
- grid: (true/false) Show the grid?
- xGrid: (true/false) False will remove vertical grid lines
- yGrid: (true/false) False will remove horizontal grid lines
- legend: (true/false) Do you want to show a legend?
- title: (string) Add title to top...
- points: (array) Muldimensional array for multiple datasets, each array should contain the Y-values of your points/data.
- pointRadius: (number) Radius of your points.
- colors: (array) For multiple datasets and pie/donut graphs, order of colors you would like each line/bar/pie slice to be.
- xDist: (number) Horizontal distance between vertical grid lines (Makes graph wider)
- dataNames: (array) Array of names for each dataset.
- xName: (string) Name of X-Axis
- yName: (string) Name of Y-Axis
- animations: (true/false) Enable animations?
- interactive: (true/false) Enable interactivity?
- pieSize: (number) Size of pie/donut graphs (radius to be exact)
- shadow: (true/false) Want a shadow under your pie graph?
- scale: (number) Graphs start at 0, but will jump up by the scale. Eg: 0, 10, 20, 30 ...
- x: (array) Array of your x - Axis names.
- showPoints: (true/false) Want the line graphs to have points on them?
- special: (donut/area/combo) donuts are a subset of pie, area of linear, combo of bar. So to use one use its parent and appropriately set special.
- attachTo: (id) Where do you want the graph to show up?
- animationDuration: (seconds) Time of each animation
- point, bar, and lineAnimation: (true/false)
- byCSS: (object) use a css object with your id as a selector to design your graph with CSS
- Design: This object contains all the various styling options, below:
- tooltipColor
- averageLineColor
- pointColor
- lineStrokeColor
- lineColor
- barColor
- areaColor
- tooltipFontSize
- gridColor
- tooltipColor
- tooltipBoxColor
- tooltipWidth
- lineWidth
- barBorder
- label Stroke-Kerning-Font-FontSize-Color
- borderColor
- borderWidth
- xLabelAnchor
- yLabelAnchor
- donutCenterColor
- pieTooltipX
- pieTooltipTitle
- pieTooltipRadius
- pieTooltipOpacity
- donutCenterRadius