简体   繁体   中英

C# Draw a horizontal line on each stacked column chart

Currently I need to develop a tool with chart as the major component. Chart control is also new for me. I have do a lot of reading, researching to learn and understand the whole picture of the chart control.

After all, I had stuck and question on how to draw a horizontal line (blue & red horizontal line) on stacked column chart as image shown below:

这是我的项目的要求

Here what I have done so far:

我的图表工具项目

This is my code so far:

            // X-Axis labels settings
        chart.ChartAreas[0].AxisX.LabelStyle.Angle = -45;
        chart.ChartAreas[0].AxisX.Interval = 1;

        // Y-Axis labels settings
        //chart.ChartAreas[0].AxisY.Minimum = 100;
        chart.ChartAreas[0].AxisY.Minimum = 95;

        // Plotting chart
        using (YieldEntities context = new YieldEntities())
        {

            // Extract yield loss list
            var yeilds = (
                from yeild in context.YeildDatas
                group yeild by new { yeild.Loss } into newyeild
                select new
                {
                    Loss = newyeild.Key.Loss,
                    Percentage = newyeild.Sum(p => p.Percentage)
                }).OrderByDescending(p => p.Percentage);

            //context.YeildDatas.Select(p => new { p.Loss, Percentage = p }).Distinct();

            // Create new series
            foreach (var yield in yeilds)
            {
                chart.Series.Add(yield.Loss);
                chart.Series[yield.Loss].ChartType = SeriesChartType.StackedColumn100;
            }

            // Label settings for first series
            chart.Series[0].SmartLabelStyle.Enabled = false;
            chart.Series[0].LabelAngle = -90;
            chart.Series[0].Font = new Font(Font.FontFamily, 15, FontStyle.Bold);
            chart.Series[0].IsValueShownAsLabel = true;

            var query = context.YeildDatas.ToList();
            foreach (var item in query)
            {
                DataPoint dp = new DataPoint();
                dp.SetValueXY(item.DateString, item.Percentage);
                chart.Series[item.Loss].Points.Add(dp);
            }

            // Set empty datapoint for each series
            foreach (var yield in yeilds)
            {
                DataPoint nulldp = new DataPoint();
                nulldp.SetValueXY("", 0);
                chart.Series[yield.Loss].Points.Insert(1, nulldp);
                chart.Series[yield.Loss].Points.Insert(6, nulldp);
                chart.Series[yield.Loss].Points.Insert(11, nulldp);
            }

            chart.Legends["Legend"].IsEquallySpacedItems = true;
            chart.Legends["Legend"].IsTextAutoFit = true;

        }

I hope to get any expert to guide me to solve this problem.

This is only sample, you can start from there:

// Data point to pixel
var pixelX = this.chart1.ChartAreas[0].AxisX.ValueToPixelPosition(dataPointX);
var pixelY = this.chart1.ChartAreas[0].AxisY.ValueToPixelPosition(dataPointY);

// Pixel to data point
var dataPointX = this.chart1.ChartAreas[0].AxisX.PixelPositionToValue(pixelX);
var dataPointY = this.chart1.ChartAreas[0].AxisY.PixelPositionToValue(pixelY);

// Use event Paint to draw your line
private void chart1_Paint(object sender, PaintEventArgs e)
{
  // Convert dataPoint to pixel
  var dataPointX = this.chart1.Series[0].Points[0].XValue;
  var dataPointY = this.chart1.Series[0].Points[0].YValues[0];

  var pixelX = this.chart1.ChartAreas[0].AxisX.ValueToPixelPosition(dataPointX);
  var pixelY = this.chart1.ChartAreas[0].AxisY.ValueToPixelPosition(dataPointY);

  // Only sample, pen should be initialized outside Paint method
  Pen pen = new Pen(Brushes.Red);

  // Example of drawing line with width=100 pixel
  e.Graphics.DrawLine(pen, pixelX, pixelY, pixelX + 100, pixelY);  
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM