For initial declarative chart setup. Download as ZIP or 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 © 2023, Highsoft AS. All rights reserved.
Highcharts v11.2.0 - Generated from branch master (commit 3ff1d0d25f), on Mon Oct 30 2023 15:46:15 GMT+0100 (Central European Standard Time)