The chart series which display the value of series items by vertical bar.
When add series as setting information in chart, it will specify type as "column".
X axis should be CategorizedAxis, and Y axis should be LinearAxis. The order of displaying items in X axis follows the order of categories which have been specified in X axis.
BarSeries display items with horizontal bar.
var chart = {
series: [{
type: "column",
itemWidth: 0.7,
label: {
},
styles: {
},
...
}]
};