Bar Chart Example
This example shows how to create stacked bar charts.
<Svg style="width:600px; height:600px;">
<Chart offset="20 -20 -40 150" axes={{ y: { type: CategoryAxis, vertical: true, inverted: true }, x: { type: NumericAxis, snapToTicks: 0 } }}>
<Gridlines/>
<Repeater records-bind="$page.points" recordAlias="$point" sorters-bind="$page.sorters">
<Bar name="V1"
colorIndex={8}
active-bind="$page.v1"
height={0.5}
x-bind="$point.v1"
y-bind="$point.city"
stacked
tooltip-tpl="{$point.v1:n;0}" />
<Bar name="V2"
colorIndex={9}
active-bind="$page.v2"
height={0.5}
x-bind="$point.v2"
y-bind="$point.city"
stacked
tooltip-tpl="{$point.v2:n;0}" />
<Bar name="V3"
colorIndex={10}
active-bind="$page.v3"
height={0.5}
x-bind="$point.v3"
y-bind="$point.city"
stacked
tooltip-tpl="{$point.v3:n;0}" />
<Bar name="W1"
colorIndex={2}
active-bind="$page.w1"
height={0.5}
x-bind="$point.w1"
y-bind="$point.city"
stacked
stack="left"
tooltip-tpl="{$point.w1:n;0}" />
<Bar name="W2"
colorIndex={1}
active-bind="$page.w2"
height={0.5}
x-bind="$point.w2"
y-bind="$point.city"
stacked
stack="left"
tooltip-tpl="{$point.w2:n;0}" />
<Bar name="W3"
colorIndex={0}
active-bind="$page.w3"
height={0.5}
x-bind="$point.w3"
y-bind="$point.city"
stacked
stack="left"
tooltip-tpl="{$point.w3:n;0}" />
</Repeater>
</Chart>
</Svg>
<Legend />