MultiChart
Multi Chart includes many sub charts inside a chart panel. You can feed data including all charts data to MultiChart or one by one to feed the chart data.

Props
Name
Type
Default Value
Required
Description
data
object
yes
The data to feed the visualization
name
string
yes
The title name of the chart
charts
IMultiCharts[]
yes
The sub charts config
width
number | string
'auto'
no
The width of the chart, default unit is px
height
number | string
300
no
The height of the chart, default unit is px
chartConfig
object
no
Additional Highcharts config to customize
Props of each chart
Name
Type
Default Value
Required
Description
data
string
no
The data to feed the visualization
dataKey
string
no
The data key for the upper data from MultiChart to get the specific data, this will not work if data is fed
name
string
yes
The label of the chart
type
string
'area'
no
The Highcharts' chart type for the chart
unit
string
no
The unit of the total value
range
[number, number
no
This will give the break point for data to be categorised in this case 0- 10, 10-100, 100+
inverse
boolean
true
no
This will tell if the range is good at being lower in this case 0-60 (good), 60-90 (warning), 90+ (dangerous)
Usage Example
Data structure (Each chart)
Key
Type
Required
Description
series
HightCharts series data
yes
The chart series data
total
number | string
no
The total info
Example of data structure
Last updated
Was this helpful?