-
Notifications
You must be signed in to change notification settings - Fork 325
chart types line area combo
강지웅/FE개발팀/NE edited this page Aug 26, 2016
·
3 revisions
- This section describes how to create line & area combo chart with options.
- You can refer to the Getting started for base installation of Toast UI Chart.
The data type of the line & area combo chart is one level deeper than the depth of basic data type. Features of this data type, you will need to enter the data for each chart type.
var rawData = {
categories: ['cate1', 'cate2', 'cate3'],
series: {
area: [
{
name: 'Legend1',
data: [[4, 6], [6, 8], [8, 10]
}
],
line: [
{
name: 'Legend2',
data: [5, 7, 9]
}
]
}
};
Line & Area Combo chart can use the features and options like line and area chat.
- Zoom by mouse drag(
zoomable
option) - Automatically adjusting count of tick(
tickInterval='auto'
option) - Dynamically adding data
var rawData = {
categories: ['2014.01', '2014.02', '2014.03', ...],
series: {
area: [
{
name: 'Effective Load',
data: [150, 130, 100, ...]
}
],
line: [
{
name: 'Power Usage',
data: [72, 80, 110, ...]
}
]
}
};
var options = {
xAxis: {
tickInterval: 'auto' // automatically adjusting count of tick
},
series: {
zoomable: true // zoom by mouse drag
}
}
var chart = tui.chart.comboChart(container, rawData, options);
// dynamically adding data
chart.addData('newCate', {line:[10], area:[9]});
- Chart Guide