<
telerik:RadGrid ID="RadGrid1" DataSourceID="SqlDataSource1" Skin="Vista" runat="server"
GridLines="None" Width="99%" ClientSettings-MasterTableView-Width="100%">
<MasterTableView Width="100%">
</MasterTableView>
<ClientSettings>
<Resizing AllowColumnResize="true" />
<Scrolling AllowScroll="true" UseStaticHeaders="true" />
</ClientSettings>
</telerik:RadGrid>
<asp:SqlDataSource ID="SqlDataSource1" ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
ProviderName="System.Data.SqlClient" SelectCommand="SELECT TOP 25 EmployeeID,LastName,FirstName,Title,TitleOfCourtesy,BirthDate,HireDate,Address,City,Region,PostalCode,Country,HomePhone,Extension FROM Employees"
runat="server"></asp:SqlDataSource>
How can I format the value in the chart to display as $8.7M when my data is 879773.
I have currently set it to the following:
s.DefaultLabelValue =
"#Y{#,##0}"
Thank you
shahab