-
Notifications
You must be signed in to change notification settings - Fork 9
Easel based charts
In the IE8, this type cannot be used because IE8 does not support Canvas.
The width of the bar chart is not able to specify because it is fit the size of the canvas automatically. It will be changed by the number of data-sets.
The color of the bar of chart. By default, chartColors will be use.
The transparency of the bar chart.
The margin between the bar and bar.
The line chart is displayed in the animation.
The color of the line of chart. By default, chartColors will be use.
The transparency of the line chart.
If "true" is specified, the circular pointer will be displaying to the each vertex.
The color of the circular pointer. By default, chartColors will be use.
The transparency of the circular pointer.
In easel.mix, you can draw in the same Canvas by a combination of chart types. (Currently, only motionLine and bar) The setting of each chart will be specified in the "mix" settings.
type: easel.mix,
data: graphData,
yLength: 2,
mix: [{
type: "bar",
yLength: 1
}, {
type: "motionLine",
yLength: 1,
lineWidth: 8
}]