This is a migrated thread and some comments may be shown as answers.

[Solved] How can I plot this chart.

2 Answers 57 Views
Chart for XAML
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Ricardo
Top achievements
Rank 1
Ricardo asked on 09 Sep 2014, 04:32 AM
I'm trying to plot this chart but I can't.

I was wondering If telerik chart supports something like that.

I have this XAML but I canĀ“t  do the same chart.

 <telerikChart:RadCartesianChart Grid.Row="2" PaletteName="DefaultLight">
            <telerikChart:RadCartesianChart.HorizontalAxis>
                <telerikChart:CategoricalAxis />
            </telerikChart:RadCartesianChart.HorizontalAxis>
            <telerikChart:RadCartesianChart.VerticalAxis>
                <telerikChart:LinearAxis />
            </telerikChart:RadCartesianChart.VerticalAxis>
            <telerikChart:RadCartesianChart.SeriesProvider>
                <telerikChart:ChartSeriesProvider x:Name="provider" Source="{Binding Series, Mode=TwoWay}">
                    <telerikChart:ChartSeriesProvider.SeriesDescriptors>
                        <telerikChart:CategoricalSeriesDescriptor CategoryPath="Category"
                                                                  ItemsSourcePath="Values"
                                                                 
                                                                  ValuePath="Value">
                            <telerikChart:CategoricalSeriesDescriptor.Style>
                                <Style TargetType="telerikChart:BarSeries">
                                    <Setter Property="CombineMode" Value="Cluster" />
                                </Style>
                            </telerikChart:CategoricalSeriesDescriptor.Style>
                        </telerikChart:CategoricalSeriesDescriptor>
                    </telerikChart:ChartSeriesProvider.SeriesDescriptors>
                </telerikChart:ChartSeriesProvider>
            </telerikChart:RadCartesianChart.SeriesProvider>

        </telerikChart:RadCartesianChart>

2 Answers, 1 is accepted

Sort by
0
Ricardo
Top achievements
Rank 1
answered on 09 Sep 2014, 04:33 AM
Sorry bad link http://s30.postimg.org/z6az2m7e9/Untitled.png
0
Ves
Telerik team
answered on 11 Sep 2014, 02:53 PM
Hi Ricardo,

Please, find attached a small application, showing how to achieve such type of chart. It is based on the following help topics: Bar Series, Line Series, Custom Palette and Legend.

Best regards,
Ves
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Chart for XAML
Asked by
Ricardo
Top achievements
Rank 1
Answers by
Ricardo
Top achievements
Rank 1
Ves
Telerik team
Share this question
or