Segmented donut chart

Example

<script>
    segmented = new RGraph.Segmented({
        id: 'cvs',
        min: 0,
        max: 100,
        value: 67,
        options: {
            width: '-15',
            labelUnitsPost: '%',
            labelSize: 45
        }
    }).roundRobin({frames: 90});
    
    segmented.canvas.onclick = function (e)
    {
        var value = segmented.getValue(e);
        segmented.value = value;

        segmented.grow();
    }
</script>
View example on CodePen

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.

Chart configuration properties

PropertyDescriptionDefault
centerxThe X coordinate of the meter.null (the horizontal center of the canvas)
centeryThe Y coordinate of the meter.null (the vertical center of the canvas)
radiusThe radius of the chart.null (this is generated based on the size of the canvas)
widthThis is the width of the circular bar that makes up the chart.10
centerx
The X coordinate of the meter.
Default: null (the horizontal center of the canvas)

centery
The Y coordinate of the meter.
Default: null (the vertical center of the canvas)

radius
The radius of the chart.
Default: null (this is generated based on the size of the canvas)

width
This is the width of the circular bar that makes up the chart.
Default: 10

Margin properties

PropertyDescriptionDefault
marginLeftThe left margin of the chart.15
marginRightThe right margin of the chart.15
marginTopThe top margin of the chart.15
marginBottomThe bottom margin of the chart.15
marginLeft
The left margin of the chart.
Default: 15

marginRight
The right margin of the chart.
Default: 15

marginTop
The top margin of the chart.
Default: 15

marginBottom
The bottom margin of the chart.
Default: 15

Color properties

PropertyDescriptionDefault
colorsThe colors of the chart. This should be a two-element array consisting of the foreground color and the background color.[red, white]
colorsThe colors of the chart. This should be a two-element array consisting of the foreground color and the background color.[red, white]
backgroundColorThe background color of the chart.black
colors
The colors of the chart. This should be a two-element array consisting of the foreground color and the background color.
Default: [red, white]

colors
The colors of the chart. This should be a two-element array consisting of the foreground color and the background color.
Default: [red, white]

backgroundColor
The background color of the chart.
Default: black

Labels and text properties

PropertyDescriptionDefault
textAccessibleA new feature in 2016 that allows you to use 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>
false
textAccessibleOverflowThis can be 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.visible
textAccessiblePointereventsThis controls whether the DOM text responds to mouse-based events or not (it sets the pointer-events CSS property to none).true
textFontThe font used to render the text.Arial, Verdana, sans-serif
textColorThe color of the label.black
textSizeThe size of the text (in points).null (the text size is calculated)
textBoldWhether text on the chart is bold or not.false
textItalicWhether text on the chart is italic or not.false
labelsCenterSpecificIf you want to specify your own label, which can be textual, you can use this property.null
labelsCenterSpecificFormattedDecimalsWhen using formatted labels this is the number of decimals that are applied to the %{value_formatted} macro. 0
labelsCenterSpecificFormattedPointWhen using formatted labels this is the decimal point character that's used with the %{value_formatted} macro..
labelsCenterSpecificFormattedThousandWhen using formatted labels this is the thousand separator character that's used with the %{value_formatted} macro.,
labelsCenterSpecificFormattedUnitsPreWhen using formatted labels these are the units that are prepended to the number with the %{value_formatted} macro.(an empty string)
labelsCenterSpecificFormattedUnitsPostWhen using formatted labels these are the units that are appended to the number with the %{value_formatted} macro.(an empty string)
labelsCenterFontThe font used by the labelsCenter label.null
labelsCenterSizeThe size of the labelsCenter label.null
labelsCenterColorThe color of the labelsCenter label.null
labelsCenterBoldWhether the labelsCenter label is bold or not.null
labelsCenterItalicWhether the labelsCenter label is italic or not.null
labelsCenterDecimalsThe number of decimals that are shown on the label. 0
labelsCenterUnitsPreThese units are prepended to the number.[an empty string]
labelsCenterUnitsPostThese units are appended to the number.[an empty string]
labelsCenterPointThe character that's used as the decimal point..
labelsCenterThousandThe character that's used as the thousand separator.,
labelsCenterOffsetxThis allows you finer-grained control in the horizontal direction over the text positioning if you need it. 0
labelsCenterOffsetyThis allows you finer-grained control in the vertical direction over the text positioning if you need it. 0
textThis allows you to add custom text to your chart if you want to. There's a dedicated page that describes this option here.null
textAccessible
A new feature in 2016 that allows you to use 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>

Default: false

textAccessibleOverflow
This can be 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.
Default: visible

textAccessiblePointerevents
This controls whether the DOM text responds to mouse-based events or not (it sets the pointer-events CSS property to none).
Default: true

textFont
The font used to render the text.
Default: Arial, Verdana, sans-serif

textColor
The color of the label.
Default: black

textSize
The size of the text (in points).
Default: null (the text size is calculated)

textBold
Whether text on the chart is bold or not.
Default: false

textItalic
Whether text on the chart is italic or not.
Default: false

labelsCenterSpecific
If you want to specify your own label, which can be textual, you can use this property.
Default: null

labelsCenterSpecificFormattedDecimals
When using formatted labels this is the number of decimals that are applied to the %{value_formatted} macro.
Default: 0

labelsCenterSpecificFormattedPoint
When using formatted labels this is the decimal point character that's used with the %{value_formatted} macro.
Default: .

labelsCenterSpecificFormattedThousand
When using formatted labels this is the thousand separator character that's used with the %{value_formatted} macro.
Default: ,

labelsCenterSpecificFormattedUnitsPre
When using formatted labels these are the units that are prepended to the number with the %{value_formatted} macro.
Default: (an empty string)

labelsCenterSpecificFormattedUnitsPost
When using formatted labels these are the units that are appended to the number with the %{value_formatted} macro.
Default: (an empty string)

labelsCenterFont
The font used by the labelsCenter label.
Default: null

labelsCenterSize
The size of the labelsCenter label.
Default: null

labelsCenterColor
The color of the labelsCenter label.
Default: null

labelsCenterBold
Whether the labelsCenter label is bold or not.
Default: null

labelsCenterItalic
Whether the labelsCenter label is italic or not.
Default: null

labelsCenterDecimals
The number of decimals that are shown on the label.
Default: 0

labelsCenterUnitsPre
These units are prepended to the number.
Default: [an empty string]

labelsCenterUnitsPost
These units are appended to the number.
Default: [an empty string]

labelsCenterPoint
The character that's used as the decimal point.
Default: .

labelsCenterThousand
The character that's used as the thousand separator.
Default: ,

labelsCenterOffsetx
This allows you finer-grained control in the horizontal direction over the text positioning if you need it.
Default: 0

labelsCenterOffsety
This allows you finer-grained control in the vertical direction over the text positioning if you need it.
Default: 0

text
This allows you to add custom text to your chart if you want to. There's a dedicated page that describes this option here.
Default: null

Interactive features properties

PropertyDescriptionDefault
contextmenuAn array of context menu items. More information about context menus is here.An empty array
annotatableWhether annotations are enabled for the chart (ie you can draw on the chart interactively.false
annotatableColorIf you do not allow the use of the palette, then this will be the only color allowed for annotations.black
annotatableLinewidthThis is the linewidth of the annotations.1
adjustableDefaulting to false, this determines whether the chart will be adjustable (click the bar and drag it).false
contextmenu
An array of context menu items. More information about context menus is here.
Default: An empty array

annotatable
Whether annotations are enabled for the chart (ie you can draw on the chart interactively.
Default: false

annotatableColor
If you do not allow the use of the palette, then this will be the only color allowed for annotations.
Default: black

annotatableLinewidth
This is the linewidth of the annotations.
Default: 1

adjustable
Defaulting to false, this determines whether the chart will be adjustable (click the bar and drag it).
Default: false

Miscellaneous properties

PropertyDescriptionDefault
radialsCountHow many segments are used when the chart is drawn. This is the total amount of segments on the chart - not just the colored portion.36
cleartoThis is used in animations and effects as the default color to use when clearing the canvas.null
radialsCount
How many segments are used when the chart is drawn. This is the total amount of segments on the chart - not just the colored portion.
Default: 36

clearto
This is used in animations and effects as the default color to use when clearing the canvas.
Default: null

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.getValue(event or angle)

This method can be used to get the value at a particular point when you click on the chart (or for a specific angle that you give, measured in radians). An example:

obj.canvas.onclick = function (e)
{
    var obj   = e.target.__object__;
    var value = obj.getValue(e);
    // var value = obj.getValue(angle); // Provide an angle to the function instead of an event object
    
    // ...
}

obj.getAngle(value or event)
This method will return you an appropriate angle for the given value (or event object).

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 event code here
});

The function is useful if you use method chaining when creating your charts:

var obj = new RGraph.Segmented({
    id: 'cvs',
    min: 0,
    max: 100,
    value: 56,
    options: {
    }
}).on('draw', function (e, shape)
{
    // Put the draw event code here
})
.on('draw', function (e, shape)
{
    // Handle the draw event with another function
}).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 show a smaller version of the chart.

The responsive function is documented on its own page here.

Events

RGraph supports custom events that allow you to easily add interactivity to your charts if required. The following events are available:

For example:
new RGraph.Segmented({
    id: 'cvs',
    min: 0,
    max: 100,
    valllue: 45,
    options: {
    }
}).on('draw', function (obj)
{
    console.log('The draw event has fired');
    
}).draw();

Effects

These effects are available and can be used instead of the draw function. There are also generic effects available which you can see here: Generic effects and transitions
<script>
    //
    // Optional callback function that's called when the effect is complete
    //
    function myCallback (obj)
    {
        // ...
    }

    segmented = new RGraph.Segmented({
        id: 'cvs',
        min: 0,
        max: 100,
        value: 56,
        options: {
            marginLeft: 35
        }
    }).roundRobin({frames: 60}, myCallback);
    
    setInterval(function ()
    {
        segmented.value = segmented.value + RGraph.random(-10,10);
        segmented.grow();
    }, 2500);
</script>