RGraph: HTML5 canvas graph library - API documentation
Overview
Working with RGraph objects is purposefully easy, to make them straight forward to integrate into your own scripts if you want to. For any
particular graph type there are a few files required - the common libraries and the graph specific library. Eg:
<script src="RGraph.common.core.js"></script>
<script src="RGraph.bar.js"></script>
RGraph.common.core.js is a function library that contains a large set of functions that support the graph classes.
Some functions, and sets of functions, have their own files. For example, the zoom functions reside in RGraph.common.zoom.js,
so if you don't need zoom, you don't need this file.
Each of the graph libraries (RGraph.*.js) contains that particular graphs class. If you'd like to see a "bare bones"
implementation, you can look at the basic example.
Canvas and context references
Each graph object maintains references to the context and canvas as properties. So to get hold of them all you
need to do is this:
<script>
window.onload = function ()
{
// 1/2 First draw the chart
var myBar = new RGraph.Bar('myCanvas', [1,5,8,4,6,3,1,5,7,8,4,6]);
myBar.Set('chart.labels', ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']);
myBar.Draw();
// 2/2 Now get hold of the references
var context = myBar.context; // Get hold of a reference to the context
var canvas = myBar.canvas; // Get hold of a reference to the canvas
}
</script>
Working with events
When working with events, you may come across the situation where you have a reference to the canvas, but
also need to access the graph object. For this reason the constructor of each object adds a reference to the object to the
canvas and you can access it like this:
<script>
document.getElementById("myCanvas").onclick = function (e)
{
var src = (document.all ? event.srcElement : e.target);
// The RGraph object constructors add __object__ to the canvas.
var myBar = src.__object__;
}
</script>
Working with graph coordinates
For most graph types, the coordinates of elements (eg bars, lines etc) are to be found in the class variable obj.coords.
This is usually a multi-dimensional array consisting of the coordinates of those shapes, or of points. As an example the bar
chart maintains the X, Y, width and height of each bar (or sections of bars in a stacked bar chart). The coords array is
usually a flat array, even when you have multiple sets of data.
By using the RGraph.getMouseXY() function and this array you can determine if a bar was clicked on, or if the mouse is near a
line point etc.
var myCoords = myBar.coords;
Note: Previously the coords array values sometimes included the margin values, and sometimes didn't. As of 17th
April 2010 the values have all been unified to not include the margin values, so the values are as reported.
Working with graph data
Another variable you may need is the data variable. For most graph types, this is where the data is stored. It is usually
untouched, so it is as you supplied to the graph objects constructor. A notable exception to this is filled line charts.
Here the original data is stored in the class variable original_data. The data supplied is modified to produce the stacking
effect. If you need to modify a filled line charts data you will need to change this variable instead.
Not all graph types use the data variable. For some the name is different so that it makes a little more sense. The
graph types and their associate data variables are listed below1.
Graph type |
Data variable(s) |
Bar |
obj.data |
Bi-polar |
obj.left, obj.right |
Donut |
This is now a variant of the Pie chart |
Funnel |
obj.data |
Gantt |
See the docs |
Horizontal Bar |
obj.data |
Horizontal Progress bar |
obj.max, obj.value |
LED |
obj.text |
Line |
obj.original_data3 |
Meter |
obj.min, obj.max, obj.value |
Odometer |
obj.start, obj.end, obj.value |
Pie |
obj.angles, obj.data |
Radial Scatter chart |
obj.data |
Rose |
obj.max, obj.data |
Scatter |
obj.max, obj.data2 |
Traditional Radar |
obj.data, obj.max |
Vertical Progress bar |
obj.max, obj.value |
- In the table, obj refers to your graph object.
- For the Scatter chart, each data point is an array of X/Y coordinates, the color and the tooltip for that point.
-
The Line chart obj.original_data is an aggregation of all the datasets given to the Line chart, so the first
dataset is held in obj.original_data[0], the second in obj.original_data[1] etc.
Updating your graphs dynamically
A common request is to be able to update graphs dynamically. This is quite simple and consists of three steps:
- Get the new data from the server (with an AJAX request for example).
- Set the data in your graph object. See the above table for the appropriate property to use.
- Call the .Draw() method again.
If you don't need to get data from your server (ie it's all client-side) then you can omit the first step. Also, it may be
sufficient to simply recreate the entire object from scratch. This means that you won't have to alter and
RGraph internal properties - just recreate the graph object and configuration. There's a simple function
you can use for AJAX purposes here.
Setting properties
To set RGraph properties, ideally you should use each objects setter (there's also a corresponding getter). These functions
accomodate some backwards compatibility changes, so by not using them you run the risk of your graphs not working entirely as
expected.
myObj.Set('chart.gutter', 25);
myObj.Get('chart.gutter');
Scale information
For the Bar, Bipolar, HBar, Line and Scatter charts the scale that is used is stored in the scale class variable. Eg:
var myBar = new RGraph.Bar('cvs', [56,43,52,54,51,38,46,42,52]);
myBar.Draw();
var myScale = myBar.scale
RGraph functions
This is a list of some of the functions available to you in the RGraph common libraries.
It's not every single one that's available, but is a list of the common ones that you're likely to want to use. Arguments
in square brackets are optional.
<script src="RGraph.common.core.js"></script>
<script>
// Returns 9
myArray = [3,2,5,4,9,7,8];
max = RGraph.array_max(myArray);
</script>
Arrays
- (number) RGraph.array_max(array)
Returns the maximum value in the array.
File: RGraph.common.core.js
- (number) RGraph.array_sum(array)
Returns the sum of all values in the array. You can also pass a single integer, in which case it is simply returned as-is.
File: RGraph.common.core.js
- (array) RGraph.array_clone(array)
Creates a copy/clone of the given array. Only numerically indexed arrays are supported.
File: RGraph.common.core.js
- (array) RGraph.array_reverse(array)
Returns a reversal of the given array.
File: RGraph.common.core.js
- (boolean) RGraph.is_array(obj)
Returns true or false as to whether the given object is an array or not.
File: RGraph.common.core.js
- (array) RGraph.array_pad(array, length[, value])
Pads the given array to the specified length (if the length is less, if not the array is returned as is). The third, optional, argument is the value which is used as the pad value. If not specified, null is used.
File: RGraph.common.core.js
Strings
- (string) RGraph.rtrim(string)
Strips the right hand white space from the string that you pass it.
File: RGraph.common.core.js
-
(string) RGraph.number_format(obj, number[, prepend[, append]])
This formats the given number (which can be either an integer or a float. The prepend and append variables are
strings which are added to the string (eg 5%).
Note:As of 5th September 2010 this functions argument list has been changed to include the graph object, as shown above.
File: RGraph.common.core.js
Numbers
- (number) RGraph.random(min, max)
Returns a random number between the minimum and maximum that you give.
File: RGraph.common.core.js
- (string) RGraph.number_format(number[, prepend[, append]])
See above.
File: RGraph.common.core.js
Miscellaneous
-
(object) RGraph.FixEventObject(event)
Pass this function an event object and it will attempt to "fill in" the missing properties (depending on the browser).
It tries to add:
- pageX (MSIE)
- pageY (MSIE)
- target (MSIE)
- stopPropagation() (MSIE)
- offsetX (FF)
- offsetY (FF)
File: RGraph.common.core.js
- (null) RGraph.OldBrowserCompat(context)
This function "fills in" any required functions that some browsers don't have. At the moment this consists of adding the measureText() and fillText() functions to the context when they're missing (usually this means older versions of Opera).
File: RGraph.common.core.js
- (number) RGraph.GetDays(date)
This returns the number of days in the given month. The argument should be a Date object.
File: RGraph.common.core.js
- (null) RGraph.pr(mixed)
Emulates the PHP function print_r() by recursively printing the structure of whatever you pass to it. It handles numbers, strings, arrays, booleans, functions and objects.
File: RGraph.common.core.js
- (null) p(mixed)
An alias of the above albeit far shorter to type.
File: RGraph.common.core.js
- (null) cl(mixed)
A shortcut for the Firebug and Google Chrome debug function console.log().
File: RGraph.common.core.js
- (null) RGraph.Clear(canvas[, color])
Clears the canvas by drawing a white (or the optional color you give) rectangle over it.
File: RGraph.common.core.js
-
(null) RGraph.ClearAnnotations(id)
This function clears the annotation data associated with the given canvas ID (but DOES NOT redraw the graph). If you want to clear the visible annotations too, you will need to redraw the canvas. You could do this using the following code:
function ClearAndRedraw (obj)
{
RGraph.Clear(obj.canvas); // This function also calls the RGraph.ClearAnnotations() function
obj.Draw();
}
File: RGraph.common.annotatate.js
- (null) RGraph.ReplayAnnotations(object)
This function redraws any annotations which have previously been drawn on the canvas. You would use this function when annotations are turned off and you want previous annotations to be displayed.
File: RGraph.common.annotate.js
- (array) RGraph.getMouseXY(event)
When passed your event object, it returns the X and Y coordinates (in relation to the canvas) of the mouse pointer. (0,0) is in the top left corner, with the X value increasing going right and the Y value increasing going down.
File: RGraph.common.core.js
- (array) RGraph.getCanvasXY(event)
Similar to the above function but returns the X/Y coordinates of the canvas in relation to the page.
File: RGraph.common.core.js
- (number) RGraph.degrees2Radians(number)
Converts and returns the given number of degrees to radians. 1 radian = 57.3 degrees.
File: RGraph.common.core.js
- (array) RGraph.getScale(max)
Given the maximum value this will return an appropriate scale.
File: RGraph.common.core.js
- (mixed) RGraph.Registry.Get(name)
In conjunction with the next function, this is an implementation of the Registry pattern which can be used for storing settings.
File: RGraph.common.core.js
- (mixed) RGraph.Registry.Set(name, value)
In conjunction with the previous function, this is an implementation of the Registry pattern which can be used for storing settings.
File: RGraph.common.core.js
- (null) RGraph.Register(object)
This function is used in conjunction with the next to register a canvas for redrawing. Canvases are redrawn (for example) when tooltips or crosshairs are being used.
File: RGraph.common.core.js
-
(null) RGraph.Redraw([id, [color]])
This function is used in conjunction with the previous to redraw a canvas. Canvases are redrawn (for example) when tooltips or crosshairs are being used.
Note: All canvases that are registered are redrawn. However the optional first argument can be an ID (a string) of the canvas that is NOT to be redrawn. The optional second argument is the color to use when clearing canvases.
File: RGraph.common.core.js
- (null) RGraph.SetShadow(object, color, offetX, offsetY, blur)
This function is a shortcut function used to set the four shadow properties. The arguments are: your graph object, the shadow color, the X offset, the Y offset, the shadow blur.
File: RGraph.common.core.js
- (null) RGraph.NoShadow(object)
This function is a shortcut function used to "turn off" the shadow. The argument is your graph object.
File: RGraph.common.core.js
- (array) RGraph.getSegment(event)
This function can be used with the Pie (including the donut variant) and Rose charts to get segment information when the canvas is clicked on (or the mouse is moved). It returns an array consisting of: - The center X coordinate
- The center Y coordinate
- The radius
- The start angle (in degrees)
- The end angle (in degrees)
Angles are measured starting from the "east" axis.
File: RGraph.common.core.js
-
(number) RGraph.Async(mixed[, delay])
This is a simple function but has significant implications on your pages performance. You
can pass this either a function pointer, or a string containing the code to run and it will run the code asynchronously (ie in
parallel to the page loading). In doing so it can mean that your page is displayed faster, as the graph is created
seperate to the page loading. As such, the placement of your canvas tag becomes more important. What you can do is
define the canvas tag and then the code to produce the graph immediately after it. This is how the front page is coded,
(but not using the RGraph.Async() function).
There's an example of it here. The optional delay argument is measured in milliseconds
(1 second = 1000 milliseconds) and defaults to 1. What you can do is specify something like 1000 to make the effect
more pronounced to ensure it's working as expected.
Note: Since a dev release of version 4, Google Chrome versions 4 and 5 have an issue with rendering text when using
the RGraph.Async() function. The solution here is to simply not use the RGraph.Async() function.
File: RGraph.common.core.js
-
(null) RGraph.filledCurvyRect(context, x, y, width, height[, radius[, curvy top left[, curvy top right[, curvy bottom right[, curvy bottom left]]]]])
This draws a rectangle with curvy corners. Similar to the built in rectangle functions, and you can control
individual corners. The radius controls the severity of the corner curvature and defaults to 3. By default all
the corners are curvy.
File: RGraph.common.core.js
-
(null) RGraph.strokedCurvyRect(context, x, y, width, height[, radius[, curvy top left[, curvy top right[, curvy bottom right[, curvy bottom left]]]]])
This draws a rectangle with curvy corners. Similar to the built in rectangle functions, and you can control
individual corners. The radius controls the severity of the corner curvature and defaults to 3. By default all
the corners are curvy.
File: RGraph.common.core.js
Custom RGraph event related functions
- (null) RGraph.AddCustomEventHandler(object, event, callback)
This attaches a function to the spacified event. The object argument is your graph object, the event argument should be the name of the event, eg ontooltip, and the function argument is your function which handles the event.
File: RGraph.common.core.js
- (null) RGraph.FireCustomEvent(object, event)
This fires a custom event. The object is your graph object, and the name is a string specifying the name of the event.
File: RGraph.common.core.js
Other
These are functions which are less generic, and used to build the graphs. You may still wish to use them however.
- (null) RGraph.lineByAngle(context, x, y, angle, length)
This function draws a line from the given X and Y coordinates at the specified angle.
File: RGraph.common.core.js
-
(null) RGraph.Text(context, font, size, x, y, text[, valign[, halign[, border[, angle[, background[, bold[, indicator]]]]]]])
This function acts as a wrapper around the canvas text functionality. The arguments are:
- The context is the canvases 2D context.
- The font is the name of the font you want to use (eg Arial).
- The size is an integer specifying the size of the text, (measured in points).
- The x and y arguments are the X/Y coordinates at which to draw the text.
- The text argument is the text to draw.
- The optional valign argument is the vertical alignment and can be either top, center or bottom.
- The optional halign argument is the horizontal alignment and can be left, center or right.
- The optional border argument is a boolean (true or false) controlling whether the text has a border.
- The optional angle argument specifies the angle at which the text is drawn (rotated around the X/Y coordinates and measured in degrees).
- The optional background argument is the color of the background, (eg #fff).
- The optional bold argument is boolean which controls whether the text is bold or not.
- And the optional indicator argument is a boolean which controls whether a placement indicator is shown.
File: RGraph.common.core.js
- (null) RGraph.DrawTitle(canvas, text, gutter[, centerx[, size]])
This function draws the title. The centerx argument is the center point to use. If not given the center of the canvas is used.
File: RGraph.common.core.js
- (null) RGraph.Tooltip(canvas, text, x, y, idx)
This function shows a tooltip. The idx value corresponds to the tooltip array that you give.
File: RGraph.common.tooltips.js
- (null) RGraph.DrawKey(object, key, colors)
This function draws the key. The first argument is the graph object, the second is an array of key information and the last is an array of the colors to use.
File: RGraph.common.core.js
- (null) RGraph.DrawBars(object)
This draws the horizontal background bars. The argument is the graph object.
File: RGraph.common.core.js
- (null) RGraph.DrawInGraphLabels(object)
This draws the in-graph labels. The argument is the graph object.
File: RGraph.common.core.js
- (null) RGraph.DrawCrosshairs(object)
This function draws the crosshairs. The argument is the graph object.
File: RGraph.common.core.js
- (null) RGraph.HideContext()
This function clears the context menu. RGraph uses it to hide the context menu, but only AFTER your function/callback is run. You may wish to hide the context menu before your own function, in which case you can call this function.
File: RGraph.common.context.js
-
(null) RGraph.showPNG()
This function allows you to easily allow people to get a PNG image representation of your graph. It's designed to be used
in conjunction with a context menu, and is therefore part of the RGraph.common.context.js library. You can use it
like this:
myBar.Set('chart.contextmenu', [
['Get PNG', RGraph.showPNG],
null,
['Cancel', function () {}]
]);
File: RGraph.common.context.js
-
(number) RGraph.getGutterSuggest(obj, data)
This function returns a suggested gutter setting based on the vertical labels. If the bottom labels are larger, this
setting may be inappropriate. The data variable is a simple single dimension array, eg [1,2,3,4,5].
var size = RGraph.getGutterSuggest(obj, data);
obj.Set('chart.gutter', size);
File: RGraph.common.core.js
Questions
If you have a question regarding the API, you can ask it on the
mailing list