"OverflowException was unhandled - Overflow Error"
I used following code.
Code: Select all
Steema.TeeChart.Styles.Line tLine1 = new Steema.TeeChart.Styles.Line();
tLine1.VertAxis = VerticalAxis.Right;
Steema.TeeChart.Functions.CLVFunction tCLVFunction = new Steema.TeeChart.Functions.CLVFunction();
tCLVFunction.Accumulate = true;
tLine1.Function = tCLVFunction;
tLine1.Title = "CLV";
//'Assign Values
tLine1.AssignValues(tChartMain.Series[0]);
tChartMain.Series.Add(tLine1);