Hi,
i'm using RadChartView in my WPF project.
this is my code:
My question is:
have RadChartView animations o plot effects? In older object RadChart, bar are plotted with a effect by default; is there a way to apply for RadChartView?
I'm using this Telerik version: 2012.2.912.40
Thanks.
Francesco
i'm using RadChartView in my WPF project.
this is my code:
<
telerik:RadCartesianChart
x:Name
=
"chart"
Grid.Row
=
"1"
>
<
telerik:RadCartesianChart.Palette
>
<
ChartView:ChartPalette
Name
=
"PreparationPalette"
>
<
ChartView:ChartPalette.GlobalEntries
>
<
ChartView:PaletteEntry
AdditionalFill
=
"{x:Null}"
AdditionalStroke
=
"{x:Null}"
Fill
=
"{StaticResource passColor}"
Stroke
=
"{x:Null}"
/>
<
ChartView:PaletteEntry
AdditionalFill
=
"{x:Null}"
AdditionalStroke
=
"{x:Null}"
Fill
=
"{StaticResource failColor}"
Stroke
=
"{x:Null}"
/>
<
ChartView:PaletteEntry
AdditionalFill
=
"{x:Null}"
AdditionalStroke
=
"{x:Null}"
Fill
=
"{StaticResource reconstitutionColor}"
Stroke
=
"{x:Null}"
/>
</
ChartView:ChartPalette.GlobalEntries
>
</
ChartView:ChartPalette
>
</
telerik:RadCartesianChart.Palette
>
<
telerik:RadCartesianChart.HorizontalAxis
>
<
ChartView:CategoricalAxis
></
ChartView:CategoricalAxis
>
</
telerik:RadCartesianChart.HorizontalAxis
>
<
telerik:RadCartesianChart.VerticalAxis
>
<
ChartView:LinearAxis
Visibility
=
"Hidden"
/>
</
telerik:RadCartesianChart.VerticalAxis
>
<
telerik:RadCartesianChart.Series
>
<
ChartView:BarSeries
Name
=
"BarPass"
CategoryBinding
=
"Label"
ValueBinding
=
"Value"
ItemsSource
=
"{Binding Mode=TwoWay, Path=RuntimePass}"
CombineMode
=
"{Binding CombineMode, Mode=TwoWay}"
DataBindingComplete
=
"BindingComplete"
ShowLabels
=
"True"
>
</
ChartView:BarSeries
>
<
ChartView:BarSeries
Name
=
"BarFail"
CategoryBinding
=
"Label"
ValueBinding
=
"Value"
ItemsSource
=
"{Binding Mode=TwoWay, Path=RuntimeFail}"
CombineMode
=
"{Binding Mode=TwoWay, Path=CombineMode}"
DataBindingComplete
=
"BindingComplete"
ShowLabels
=
"True"
>
</
ChartView:BarSeries
>
<
ChartView:BarSeries
Name
=
"BarReconsitution"
CategoryBinding
=
"Label"
ValueBinding
=
"Value"
ItemsSource
=
"{Binding Mode=TwoWay, Path=RuntimeReconstitution}"
CombineMode
=
"{Binding Path=CombineMode, Mode=TwoWay}"
DataBindingComplete
=
"BindingComplete"
ShowLabels
=
"True"
>
</
ChartView:BarSeries
>
</
telerik:RadCartesianChart.Series
>
</
telerik:RadCartesianChart
>
My question is:
have RadChartView animations o plot effects? In older object RadChart, bar are plotted with a effect by default; is there a way to apply for RadChartView?
I'm using this Telerik version: 2012.2.912.40
Thanks.
Francesco