Skip to content

Bar Chart

A bar chart is a chart in which data is represented by bars.

Properties

NoItemInput ValueDefault ValueAction PropertyTypeAction Default ValueDescription
1IDStringAuto-generatedidstringAuto-generatedThe [id] property cannot be set by action.
2WidthString750widthstring750Component width
3HeightString250heightstring250Component height
4XStringxstringX coordinate position
5YStringystringY coordinate position
6Chart TypeSelection
1. BAR
2. XBAR
BARchartTypestringbarChart display format
7StackedSelection
1. ON
2. OFF
OFFData stack display setting
8VisibilityBooleanONvisibilitybooleantrueComponent visibility state
9ValueTable
[Detail 1]
[Detail 1]value[Detail 1]Chart data array
10ScaleTable
[Detail 2]
[Detail 2]scaleobject[Detail 2]X-axis and Y-axis scale settings
11SeriesTable
[Detail 3]
[Detail 3]seriesarray of object[Detail 3]Data series drawing settings
12LegendTable
[Detail 4]
[Detail 4]legendobject[Detail 4]Legend display settings

Example 1 Value (value)

The chart data values describe the data for each plot on the X axis as an object, and the entire chart is represented as an array.
In the example below, the X-axis is plotted from 01 to 06 (month) and shows data from four series (companyA to D).

[
{"month":"01","company A":20,"company B":52,"company C":72,"company D":34},
{"month":"02","company A":5,"company B":33,"company C":90,"company D":55},
{"month":"03","company A":55,"company B":30,"company C":81,"company D":66},
{"month":"04","company A":30,"company B":11,"company C":62,"company D":22},
{"month":"05","company A":27,"company B":14,"company C":68,"company D":70},
{"month":"06","company A":32,"company B":31,"company C":64,"company D":50}
]

Example 2 Scale (scale)

Sets minimum and maximum axis values and rotation angles for ticks and labels.

BottomBottom Scale RotateLeft MinLeft MaxLeft Max TicksLeft Scale Rotate
month00100100

Example 3 Series (series)

Set the drawing settings for the series.

IDValueColor
Acompany A#81C4E8
Bcompany B#74A2E7
Ccompany C#5E83BA

Example 4 Legend (legend)

Sets legend information.

SeriesHorizontal AlignVertical Align
A,B,Crighttop
  • The options for Horizontal Align are left | center | right (default).
  • The options for Vertical Align are top (default) | bottom.

Event

None