Hi we are using both charting objects Telerik.Chart and Telerik.Reporting.Chart in the Asp.net Ajax controls chart we use the prePaint method to hide the top and bottom YAxis Labels on our bubble chart via this method:
THis method does not appear to be available in the Reporting chart though. Anyone know a workaround?
public void RadChart_PrePaint1(object sender, EventArgs e) |
{ |
RadChart.PlotArea.YAxis.SetItemLabel(0, ""); |
RadChart.PlotArea.YAxis.SetItemLabel(7, ""); |
} |