-
Notifications
You must be signed in to change notification settings - Fork 325
chart types heatmap
강지웅/FE개발팀/NE edited this page Jun 30, 2016
·
1 revision
- This section describes how to create heatmap chart with options.
- You can refer to the Getting started for base installation of Toast UI Chart.
Heatmap chart use the heatmap data type.
var rawData = {
categories: {
x: ['cate1', 'cate2', 'cate3'],
y: ['cate10', 'cate20', 'cate30']
},
series: [
[100, 40, 30],
[20, 10, 60],
[50, 40, 30]
]
};
A heatmap chart is a graphical representation of data where the individual values contained in a matrix are represented as colors.
tui.chart.heatmapChart(container, rawData);
- Chart Guide