I am trying to change the point marks in my spline chart to an image with no success. Is this possible?
I have made a simple program to show what I mean:
I would like to change the red point marks to different images depending to the x value, probably in ItemDataBound.
Best regards,
Andreas
I have made a simple program to show what I mean:
| <telerik:RadChart ID="RadChart1" runat="server"> |
| <Series> |
| <telerik:ChartSeries Type="Spline"> |
| <Appearance> |
| <TextAppearance TextProperties-Font="Arial, 8.25pt" /> |
| <PointMark Visible="True" Dimensions-AutoSize="false" Dimensions-Height="10px" Dimensions-Width="10px"> |
| <FillStyle MainColor="#FF0000" FillType="solid"> |
| </FillStyle> |
| </PointMark> |
| <LineSeriesAppearance Width="5" /> |
| <FillStyle MainColor="#999999" FillType="Solid"> |
| </FillStyle> |
| </Appearance> |
| <Items> |
| <telerik:ChartSeriesItem YValue="1.3" ActiveRegion-Tooltip="test" > |
| </telerik:ChartSeriesItem> |
| <telerik:ChartSeriesItem YValue="6"> |
| </telerik:ChartSeriesItem> |
| <telerik:ChartSeriesItem YValue="2"> |
| </telerik:ChartSeriesItem> |
| <telerik:ChartSeriesItem YValue="8"> |
| </telerik:ChartSeriesItem> |
| </Items> |
| </telerik:ChartSeries> |
| </Series> |
| </telerik:RadChart> |
I would like to change the red point marks to different images depending to the x value, probably in ItemDataBound.
Best regards,
Andreas