My question is : when I set the RenderAs="StackedColumn100" ,why it shows wrong result? But when I set the RenderAs="StackedBar100" ,it shows right result, the code show As follows:
<Grid>
<vc:Chart Theme="Theme1" Style="{StaticResource ChartStyle}">
<vc:Chart.Titles>
<vc:Title Text="Visifire Sample with Styling" Style="{StaticResource TitleStyle}"/>
</vc:Chart.Titles>
<vc:Chart.Series>
<vc:DataSeries RenderAs="StackedColumn100" Color="Red">
<vc:DataSeries.DataPoints>
<vc:DataPoint YValue="20"/>
<vc:DataPoint YValue="30"/>
<vc:DataPoint YValue="40"/>
<vc:DataPoint YValue="50"/>
</vc:DataSeries.DataPoints>
</vc:DataSeries>
<vc:DataSeries Color="Yellow" RenderAs="StackedColumn100" >
<vc:DataSeries.DataPoints>
<vc:DataPoint YValue="80"/>
<vc:DataPoint YValue="70"/>
<vc:DataPoint YValue="60"/>
<vc:DataPoint YValue="50"/>
</vc:DataSeries.DataPoints>
</vc:DataSeries>
</vc:Chart.Series>
</vc:Chart>
</Grid>
please tell me what's wrong in my code,thank you very much!












