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

HOW TO: plot XY line with marker

2 Answers 49 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
e.urj
Top achievements
Rank 2
e.urj asked on 07 Dec 2011, 02:22 AM
Would it be possible to plot XY line with marker as follows?

Where each series has an individual set of x and y values.

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 07 Dec 2011, 06:42 AM
Hello,

Take a look into the following forum thread which discussed the same.
Getting markers on a line graph

Thanks,
Princy.
0
e.urj
Top achievements
Rank 2
answered on 14 Dec 2011, 02:12 AM
Hello, Princy.

Thanks to your notes, I found that the FillStyle-MainColor needs to be specified in PointMark as follows:
<telerik:ChartSeries Name="Series 1" Type="Line">
<Appearance>
<FillStyle FillType="ComplexGradient" MainColor="136, 221, 246">
<FillSettings>
<ComplexGradient>
<telerik:GradientElement Color="136, 221, 246" />
<telerik:GradientElement Color="97, 203, 234" Position="0.5" />
<telerik:GradientElement Color="59, 161, 197" Position="1" />
</ComplexGradient>
</FillSettings>
</FillStyle>
<PointMark Visible="True" Figure="Rectangle">
<FillStyle MainColor="51, 51, 255" FillType="Solid"></FillStyle>
</PointMark>
<TextAppearance TextProperties-Color="51, 51, 51">
</TextAppearance>
<Border Color="67, 181, 229" />
</Appearance>
<Items>
<telerik:ChartSeriesItem Name="Item 1" XValue="1" YValue="1">
</telerik:ChartSeriesItem>
</Items>
</telerik:ChartSeries>

Regards,

e.urj
Tags
Chart (Obsolete)
Asked by
e.urj
Top achievements
Rank 2
Answers by
Princy
Top achievements
Rank 2
e.urj
Top achievements
Rank 2
Share this question
or