or
Me.ChartSpendByTier.PlotArea.YAxis.Appearance.ValueFormat = Telerik.Reporting.Charting.Styles.ChartValueFormat.Currency
Line chart and Logarithmic setting
Hi ,
Whenever I change the Plot Area-> Y-Axis-> IsLogarithimic setting to true, I’m getting "Parameter is not valid" error in Visual Studio 2010. Does anybody else have the same problem?
Attached is the screen shot.
private
void
detail_ItemDataBinding(
object
sender, EventArgs evt)
{
Telerik.Reporting.Processing.DetailSection detailSection = (Telerik.Reporting.Processing.DetailSection)sender;
DataRowView row = (DataRowView)detailSection.DataObject.RawData;
Telerik.Reporting.Processing.TextBox txtEntityName = (Telerik.Reporting.Processing.TextBox)detailSection.ChildElements.Find(
"txtEntityName"
,
true
)[0];
if
(txtEntityName !=
null
)
txtEntityName.Value = row[
"EntityName"
];
}