-
Notifications
You must be signed in to change notification settings - Fork 1
Bar Chart
sharmstr edited this page Jan 21, 2023
·
1 revision
Bar chart with default options:
{
module: "MMM-ApexCharts",
position: "top_center",
header: "Sample Chart C",
config: {
chartConfig: {
chart: {
type: 'bar'
},
series: [{
data: [400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380]
}],
plotOptions: {
bar: {
borderRadius: 4,
horizontal: true,
}
},
xaxis: {
categories: ['South Korea', 'Canada', 'United Kingdom', 'Netherlands', 'Italy', 'France', 'Japan',
'United States', 'China', 'Germany'
],
}
}
}
}