This question is locked. New answers and comments are not allowed.
Is there a way to bind a RadPieChart to a TimeBar?
The RadChart has a nice TimeBar property that can be used to display only the data selected by a RadTimeBar. Nice! But I don't see this for RadPieChart. Here's how I bind to RadChart:
The RadChart has a nice TimeBar property that can be used to display only the data selected by a RadTimeBar. Nice! But I don't see this for RadPieChart. Here's how I bind to RadChart:
<telerik:RadChart.TimeBar>
<Binding ElementName="timeBar1" />
</telerik:RadChart.TimeBar>
<telerik:RadChart.SeriesMappings>
<telerik:SeriesMapping>
<telerik:ItemMapping DataPointMember="XCategory" FieldName="TimeStamp" />
<telerik:ItemMapping DataPointMember="YValue" FieldName="Value1" />
</telerik:SeriesMapping>
</telerik:RadChart.SeriesMappings>
Optionally, could I bind the RadPieChart to the RadChart?
Or, could I make the RadChart display as a pie?