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

Q2 2009 Value Data Table Format

2 Answers 63 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
David
Top achievements
Rank 1
David asked on 03 Dec 2009, 04:56 PM
I have searched the demo's, FAQ's, and this forum for answers.  How do I get the Value Data Tables to format into Currency?

2 Answers, 1 is accepted

Sort by
0
Accepted
Giuseppe
Telerik team
answered on 08 Dec 2009, 03:49 PM
Hi David,

You can achieve the desired functionality by setting the DefaultLabelValue property like this:

<telerik:RadChart ID="RadChart1" runat="server">
    <Series>
        <telerik:ChartSeries DefaultLabelValue="#Y{C}" Appearance-ShowLabels="False">
            <Items>
                <telerik:ChartSeriesItem YValue="21" />
                <telerik:ChartSeriesItem YValue="25" />
                <telerik:ChartSeriesItem YValue="11" />
                <telerik:ChartSeriesItem YValue="16" />
            </Items>
        </telerik:ChartSeries>
    </Series>
    <PlotArea DataTable-Visible="True" />
</telerik:RadChart>

Hope this helps.


All the best,
Manuel
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
David
Top achievements
Rank 1
answered on 08 Dec 2009, 05:38 PM
Adding DefaultLabelValue="#Y{C}" to the tag did the trick.

Thank you so much.  
Tags
Chart (Obsolete)
Asked by
David
Top achievements
Rank 1
Answers by
Giuseppe
Telerik team
David
Top achievements
Rank 1
Share this question
or