I add datapoints to the RadChartView using CategoricalDataPoints. The values can be quite large and then I get the following error:
Value was either too large or too small for a decimal.
Then I did this test:
radChartView->Series[0]->DataPoints->Add(gcnew Telerik::Charting::CategoricalDataPoint(Decimal::ToDouble(Decimal::MaxValue), 0));
I still get the exception: Value was either too large or too small for a decimal.
What is the max value that can be set?