Column chart with different widths of columns
问题 I'm trying to create a column chart that has columns with diffrent widths. Is it possible to create a chart like that with the chart control or should I look for a library that supports it? 回答1: Change the MarkerSize property on each DataPoint individually 回答2: You can use a Area type chart like this: Set it up Series s1 = chart1.Series.Add("S1"); s2.ChartType = SeriesChartType.Area; ChartArea ca = chart1.ChartAreas[0]; ca.AxisX.Minimum = 0; AddArea(chart1, s2, 12, 53, Color.SlateBlue);