This question is locked. New answers and comments are not allowed.
Dear Teleriks,
I have some bugs with chart (2011Q2,SP1)
At first my code is : (NOTE : I use telerik in RTL fromat)
The bugs are :
1- formatting not works correctly! for example it returns : 2,105,000,0 instead of 21,050,000
2- in IE 9 and Firefox 6.0.2 it make a long horizontal scrollbar at the bottom of the page.
3- in chrome 14 , all the chart labels shift to left (about 20px)
I have some bugs with chart (2011Q2,SP1)
At first my code is : (NOTE : I use telerik in RTL fromat)
<table id="chart" style="width: 100%;"> <tr> <td align="center"> @(Html.Telerik().Chart(Model) .Name("priceTrendChart") .Title(title => title.Text("خلاصه فروش").Font("Tahoma")) .ChartArea(area => area.Border(1, "black", ChartDashType.Solid)) .Legend(legend => legend.Font("Tahoma")) .SeriesDefaults(series => { series.Column().Labels(labels=>labels.Visible(true).Format("{0:#,#}")); }) .Series(series => { series.Column(o => o.TotalAmount).Name("Total Amount").Labels(labels => labels.Font("Tahoma")); series.Column(o => o.SaleIAmount).Name("Sale Amount").Labels(labels => labels.Font("Tahoma")); series.Column(o => o.AdjustmentAmount).Name("Adj Amount").Labels(labels => labels.Font("Tahoma")); series.Column(o => o.ProformaCount).Name("Proforma Amount").Labels(labels => labels.Font("Tahoma")); }) .ValueAxis(axis => axis.Numeric().Labels(labels => labels.Visible(true).Font("Tahoma").Format("{0:#,#}"))) .CategoryAxis(axis => axis.Categories(s => s.Month).Labels(l => l.Font("Tahoma"))) .HtmlAttributes(new { style = "width: 600px;" }) ) </td> </tr> </table>
The bugs are :
1- formatting not works correctly! for example it returns : 2,105,000,0 instead of 21,050,000
2- in IE 9 and Firefox 6.0.2 it make a long horizontal scrollbar at the bottom of the page.
3- in chrome 14 , all the chart labels shift to left (about 20px)