Thermometer chart API reference
Example
<script> new RGraph.Thermometer({ id: 'cvs', min: 0, max: 100, value: 52, options: { colors: ['Gradient(red:#f33:red)'], marginLeft: 35, marginRight: 35, tooltips: 'Todays temperature
%{key}', tooltipsFormattedKeyLabels: ['London'], tooltipsFormattedUnitsPost: 'c', tooltipsCss: { fontSize: '18pt', textAlign: 'left' } } }).draw(); </script>
Properties
You can use these properties to control how the chart appears. You can set them by including them in the options section of the configuration as shown above.
- Margin properties
- Background properties
- Color properties
- Title properties
- Labels and text properties
- Shadow properties
- Scale properties
- Interactive features properties
- Miscellaneous properties
Margin properties
Background properties
Color properties
Title properties
textFont
setting is used (usually Arial
).4pt
bigger than the textSize
setting."-5"
- in which case it's converted to a number and added to the calculated coordinate - allowing you to adjust the calculated coordinate."-5"
- in which case it's converted to a number and added to the calculated coordinate - allowing you to adjust the calculated coordinate.marginTop
value.Labels and text properties
dom
text in place of canvas
text. It makes for much higher quality text that you can also select if desired (for copy/paste operations). It won't fit all situations and you can read more about the DOM text feature here. A good way to control borders/margins/padding etc is not to set them on the canvas
but to wrap the canvas
in a div
and set them on that like this:
<div style="margin-left: 50px; display: inline-block"> <canvas id="cvs" width="650" height="250"></canvas> </div>
visible
or hidden
and it controls whether the text is clipped to the edges of the canvas
. It defaults to be visible and means you can set small margins if you wish.dom
text responds to mouse-based events or not (it sets the pointer-events
css
property to none
).Thermometer chart
.Thermometer charts
value is shown as a label.scaleDecimals
if this is not specified.scalePoint
if this is not specified.scaleThousand
if this is not specified.scaleUnitsPre
if this is not specified.scaleUnitsPost
if this is not specified.textFont
setting.textSize
setting.textColor
setting.labelsValue
label is bold or not. This falls back to the textBold
setting.labelsValue
label is italic or not. This falls back to the textItalic
setting.scaleDecimals
property.Shadow properties
Scale properties
Interactive features properties
false
, this determines whether your bar chart will be adjustable.html
.false
if you don't want your charts to be highlighted.true
to get this behaviour. Keep in mind that if you have a lot of bars/segments/points/etc then it's possible for the chart to become quite crowded. If you need to subsequently clear all of the tooltips there's an api
function available to do that for you and it's called: RGraph.tooltip.persistent.clear()
If you want to access any (or all) of the tooltip div
tags then you can do so using the RGraph.tooltip.persistent
object. This option works when you have the tooltipsEvent
property set to mousemove
slide
fade
or none
.click
or mousemove
.%{value_formatted}
option.%{value_formatted}
option.%{value_formatted}
option.%{value_formatted}
option.%{value_formatted}
option.%{key}
option to use.square
or circle
css
values to the key color shape that appears in the tooltip key. Note the property name is "color" and not "colors" like previous properties. It should be an object of css
properties like this: tooltipsFormattedKeyColorsCss : { border: "1px solid #ddd"; }
ul
and ol
.tooltipsFormattedListItems: [ ['Bill','Jerry','Berty'], // First tooltip ['Gill','Carrie','Lucy'], // Second tooltip ['Pob','Nobby','Hilda'] // Third tooltip ]You can use
css
to style this list - for example:.RGraph_tooltip ul#rgraph_formatted_tooltips_list li { text-align: left; color: yellow; }
th
tags.css
values applied to the tooltips pointer (a css
border, for example) then specify an object containing those values to this property. For example: tooltipsPointerCss: { borderLeft: 'gray 2px solid', borderBottom: 'gray 2px solid' }
false
tooltips are positioned next to the mouse pointer.css
class the chart uses.css
that gets applied to all of the tooltips, but don't want to use the RGraph.tooltips.style
object (which gets applied to all of the tooltips on the page for every chart) you can use this property to give some per-object css
for the tooltips. These are css
styles that get applied to all of the tooltips for the specific object only. It should look like this:tooltipsCss: { fontFamily: 'Verdana', fontSize: '20pt' }
pie-tooltipshotspotignore.html
. You can use the transparent
color to allow the rear chart to be seen in such a case. It can be:
- A single
boolean
value (ietrue
orfalse
) to enable or disable all of the hotspots -true
means the hotspot will be ignored - A single number (the zero-indexed number corresponding to the hotspot to ignore)
- An array of numbers (the numbers are the indexes of hotspots to ignore)
- An array of
boolean
true
orfalse
values - the position of these values correspond to the index(es) of the segments to ignore (for example[false, false, true, false, false]
-true
means the corresponding hotspot will be ignored)
Miscellaneous properties
null
but you can set it to a function if you wish so that function is called to do the chart highlighting. It's passed the shape object as an argument.canvas
.Methods
obj.get(name)
An accessor that you can use to retrieve the values of properties.
obj.set(name, value)
An accessor that you can use to set the values of properties.
obj.getShape(event)
This method makes it easy to get hold of the bar when it's been clicked on or hovered over. It returns an object which has the following indexes available:
object |
The chart object. |
x |
The X coordinate of the main body of the Thermometer. |
y |
The Y coordinate of the main body of the Thermometer. |
width |
The width of the main body of the Thermometer. |
height |
The height of the main body of the Thermometer. |
dataset |
As there's only ever one element on the Thermometer chart this is always zero.
|
index |
As there's only ever one element on the Thermometer chart this is always zero.
|
sequentialIndex |
As there's only ever one element on the Thermometer chart this is always zero.
|
tooltip |
If a tooltip is associated with the chart this will be it.id:
strings are expanded for you (where the tooltip text is retrieved from the CHTML
tag with the matching ID).
|
<script>
thermometer.canvas.onclick = function (e)
{
RGraph.redraw();
var canvas = e.target,
obj = canvas.__object__,
shape = obj.getShape(e);
if (shape) {
// Highlight the main body of the Thermometer chart. If you need to
// highlight the whole of the Thermometer chart you can use the highlight
// function: obj.highlight(shape)
obj.path(
'lw 10 b r % % % % s black f red',
shape.x, shape.y, shape.width, shape.height
);
}
}
</script>
obj.getValue(mixed)
This method can be used to get the value at a particular point or at the
mouse coordinates based on the scale that is in use.
Not simply the coordinates of the mouse. The argument can either be an
event object (for use in event listener functions) OR a two-element
array consisting of the X and Y coordinates (ie when you're not necessarily
in an event listener). It returns null
if the mouse
or coordinates are in the margin areas. An example:
myChart.canvas.onclick = function (e)
{
var obj = e.target.__object__;
var value = obj.getValue(e);
// ...
}
obj.getYCoord(value)
This method can be used to get an appropriate Y coordinate for a value
when you're doing custom drawing on the chart. It
returns null
if the value is out of range.
obj.on(event, function)
This method can be used to set an event listener on an object.
It operates similarly to the jquery
on
function.
The first argument is the event that you wish to attach to and the second
is the handler function. For example:
obj.on('draw', function (obj)
{
// Put your event code here
});
The function is useful if you use method chaining when creating your charts:
var obj = new RGraph.Thermometer({ id: 'cvs', min: 0, max: 100, value: 56, options: { } }).on('draw', function (obj) { // Put your draw event code here }).on('click', function (e, shape) { // Handle the click event }).draw();
obj.exec(function)
The exec function is documented here.
obj.responsive(configuration)
The responsive
function helps your charts
respond to different browser window sizes and screen
resolutions. For example, for smaller screens, you
might want to have angled labels or show shorter
versions of them completely.
Update: There is now the responsive configuration option available to you and this is now the preferred method of configuration.
The responsive function and configuration option are documented on their own page here.
The coordinates properties
There's only one coordinates property with the
Thermometer chart
because there's only one
selectable area - the vertical indicator bar. This
doesn't include the round bell of the Thermometer chart
.
-
obj.coords
These are the coordinates (a rectangle) that make up the indicator bar (the round bell of the thermometer is n't included. The coordinates are just the standard rect coords though it is a two-dimensionedarray
to keep it consistent with other charts:x
y
width
height
var x = obj.coords[0][0], y = obj.coords[0][1], width = obj.coords[0][2], height = obj.coords[0][3];
-
obj.coordsText
This holds the coordinates of all of the text that has been added to the chart. Even if the text is blank (ie no text) then the coordinates will be added to this variable.
Events
RGraph supports custom events that allow you to easily add interactivity to your charts if required. The following events are available:
adjustbegin
This event fires at the start of adjusting - like the standardmousedown
event.adjust
This event fires (repeatedly) during adjusting - like the standardmousemove
event.adjustend
This event fires at the end of adjusting - like the standardmouseup
event.annotatebegin
This event fires at the start of annotating - like the standardmousedown
event.annotate
This event fires (repeatedly) during annotating - like the standardmousemove
event.annotateend
This event fires at the end of annotating - like the standardmouseup
event.annotateclear
This event fires at the end of theRGraph.clearAnnotations
function.beforeclear
This event fires at the start of theRGraph.clear
function.clear
This event fires at the end of theRGraph.clear
function.click
This is similar to the standardcanvas
click
event but this only fires when you click on a bar - not the wholecanvas
.beforecontextmenu
This event fires when you have the contextmenu enabled and it is about to appear.contextmenu
This event fires when you have the contextmenu enabled and it has been displayed.beforedraw
This event fires at the start of thedraw
method before anything has been done.firstdraw
This event fires at the end of thedraw
function - but only the first time that thedraw
function is called.draw
This event fires at the end of thedraw
function.mousemove
This event is similar to the standardmousemove
event but only fires when you move the mouse over a bar on the chart.mouseover
This event is similar to the standardmouseover
event but only fires when you move the mouse over a bar on the chart.mouseout
This event is similar to the standardmouseout
event but only fires when you move the mouse away from a bar on the chart that you've previously hovered over.beforetooltip
This event fires at the start of the tooltip showing process.tooltip
This event fires after a tooltip has been shown.
new RGraph.Thermometer({ id: 'cvs', min: 0, max: 100, value: 56, options: { } }).on('draw', function (obj) { console.log('The draw event has fired'); }).draw();
Effects
These effects are available and can be used instead of thedraw
function. There are also generic effects that are
available which
you can see here: Generic effects and transitions
There's a stopAnimation()
function that you can
use to stop an animation immediately if you need to.
There's a line chart demo called
demos/line-effects-stop-animation.html
in
the download archive
that demonstrates the use of this function.
- The
grow
effect(effects-thermometer-grow.html
in the download archive)
<script> // Optional callback function that's called when the effect is complete function myCallback (obj) { // ... } new RGraph.Thermometer({ id: 'cvs', min: 0, max: 100, value: 56, options: { marginLeft: 35 } }).grow({frames: 60}, myCallback) </script>