some questions about Chart control
-
hey guys..i have a chart control and a datagridview on my form..i want to show the values in a graphic which i have in datagridview..Here is how it looks..i have some questions about it. 1) how i can arrange YAxis increase rate as 1..it increases by 5. 2) how i can move the black lines on backround of my chart area? 3) there are two series(Series 1 and Sayilar) there..i couldnt find any example that i can use Series1..i mean the chart control already has..that is why i created new one(Sayilar)..my question is how i can use Series2 or how i can remove it..here is the codes i created and added it to my chart control 4) how i can add some texts of Chart control Axis to inform the user which columns means what
Series series = new Series("Sayilar");
series.Color = Color.DarkGoldenrod;
series.BackSecondaryColor = Color.OrangeRed;
series.BackGradientStyle = GradientStyle.LeftRight;series.XValueMember = "Sayilar"; series.XValueType = ChartValueType.String; series.YValueMembers = "Kaç Kere"; series.YValueType = ChartValueType.String; series.ChartType = SeriesChartType.Column; chart1.Series.Add(series);
than ks for your helps and answers