For initial declarative chart setup. View as JSON.
Highcharts.setOptions({
});
Highcharts.chart({
});
For modifying the chart at runtime. See the class reference.
These pages outline the chart configuration options, and the methods and properties of Highcharts objects.
Feel free to search this API through the search bar or the navigation tree in the sidebar.
An item chart is an infographic chart where a number of items are laid out in either a rectangular or circular pattern. It can be used to visualize counts within a group, or for the circular pattern, typically a parliament.
The circular layout has much in common with a pie chart. Many of the item
series options, like center
, size
and data label positioning, are
inherited from the pie series and don't apply for rectangular layouts.
In TypeScript the type option must always be set.
Configuration options for the series are given in three levels:
item
series are defined in
plotOptions.item.Highcharts.chart('container', {
plotOptions: {
series: {
// general options for all series
},
item: {
// shared options for all item series
}
},
series: [{
// specific options for this series instance
type: 'item'
}]
});
Copyright © 2021, Highsoft AS. All rights reserved.
v9.0.1 - Generated from branch HEAD (commit c0936cdafc), on Thu Mar 04 2021 18:04:30 GMT+0100 (sentraleuropeisk normaltid)