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

Removing plot values on a rad chart

1 Answer 55 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Paul Stack
Top achievements
Rank 1
Paul Stack asked on 25 Jul 2008, 11:42 AM
i have populated a rad chart with 4 series and when this is viewed it shows the plot points

i want to be able to remove these values so that they can instead be put into the tooltip - is this possible?

many thnaks

paul

1 Answer, 1 is accepted

Sort by
0
Accepted
Giuseppe
Telerik team
answered on 25 Jul 2008, 12:41 PM
Hello Paul Stack,

You can achieve the desired effect by hiding the labels via ChartSeries.Appearance.ShowLabels property and assigning series item tooltips via ChartSeriesItem.ActiveRegion.Tooltip property:

<telerik:RadChart ID="chart1" runat="server"
    <Series> 
        <telerik:ChartSeries> 
            <Appearance ShowLabels="false"
            </Appearance> 
            <Items> 
                <telerik:ChartSeriesItem YValue="10"
                    <ActiveRegion Tooltip="10" /> 
                </telerik:ChartSeriesItem> 
                <telerik:ChartSeriesItem YValue="40"
                    <ActiveRegion Tooltip="40" /> 
                </telerik:ChartSeriesItem> 
                <telerik:ChartSeriesItem YValue="20"
                    <ActiveRegion Tooltip="20" /> 
                </telerik:ChartSeriesItem> 
            </Items> 
        </telerik:ChartSeries> 
    </Series> 
</telerik:RadChart> 



Kind regards,
Manuel
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Chart (Obsolete)
Asked by
Paul Stack
Top achievements
Rank 1
Answers by
Giuseppe
Telerik team
Share this question
or