Here's a gray themed Pie chart. It's animated using the roundRobin()
effect, the
labels are bold and the text is slightly smaller than usual.
Initially the labels are simple strings that consist of operating system names (like this:
['Symbian','Blackberry','Android','iOS','Windows','Others']
)
But these labels then have the relevant percentage that is being represented appended to them.
The labels are bold too. The font that the labels are rendered in is set to
Lucida Grande
- though if this font is not on your system you may see the labels
rendered using Arial
instead.
The tooltips are created in the same way - just a little more verbosely. They're triggered
using the mouseover
event. A default style is set on the tooltips - the
CSS textAlign
property is set to left
. This default style is set
on the tooltips as they're created and shown.
<script src="RGraph.common.core.js"></script> <script src="RGraph.common.dynamic.js"></script> <script src="RGraph.common.tooltips.js"></script> <script src="RGraph.pie.js"></script>Put this where you want the chart to show up:
<canvas id="cvs" width="550" height="300"> [No canvas support] </canvas>This is the code that generates the chart: