I want to be able to make the chart be rtl or ltr. So the first bar should be 22 and the last one 1
Code<DxChart T="ProductOnLane"
Data="@ChartsData"
Width="100%"
Height="100%"
RedrawOnResize>
<DxChartBarSeries Name="@Machine"
T="ProductOnLane"
TArgument="int"
TValue="int"
ArgumentField="@(pasi => (int)pasi.LaneNumber)"
ValueField="@(pasi => pasi.PercentComplete)"
>
@* SummaryMethod="Enumerable.Sum"> *@
<DxChartSeriesLabel Visible="true"
Position="RelativePosition.Outside"
BackgroundColor="System.Drawing.Color.Transparent" />
</DxChartBarSeries>
<DxChartTooltip Enabled="true"
Position="RelativePosition.Inside">
</DxChartTooltip>
</DxChart>