Dears ,
i am trying to make 4 trnedline charts in same file using c# and need to user same Axe values
starting from 0 till 25k with 2.5k increase
//add trendline
ITrendlines it = chart.Series[0].AddTrendLine(TrendlinesType.Polynomial);
//Set the trendline properties to determine what should be displayed.
it.displayEquation = false;
it.displayRSquaredValue = false;
//did not show the bar
chart.Series[0].Fill.FillType = FillFormatType.None;
//did not have legend
chart.HasLegend = false;
//axis increase
chart.PrimaryValueAxis.IsAutoMin = false;
chart.PrimaryValueAxis.MinValue = 0;
chart.PrimaryValueAxis.IsAutoMax = false;
chart.PrimaryValueAxis.MaxValue = 25000;
chart.PrimaryValueAxis.IsAutoMinor = false;
chart.PrimaryValueAxis.MinorUnit = 500;
chart.PrimaryValueAxis.IsAutoMajor = false;
chart.PrimaryValueAxis.MajorUnit = 2500;