Hi Ben,
There are two things that come to mind:
1. You can use custom painting.
2. You can use a mesh surface chart looked at the top to custom draw this region.
The following code shows how to achieve this effect usign custom painting:
private void Form1_Load(object sender, EventArgs e)
{
NChart chart = nChartControl1.Charts[0];
NLineSeries line = new NLineSeries();
line.UseXValues = true;
line.DataLabelStyle.Visible = false;
line.Values.Add(10);
line.XValues.Add(10);
line.Values.Add(20);
line.XValues.Add(20);
chart.Series.Add(line);
chart.PaintCallback = new NCustomPaintCallback(nChartControl1, chart);
}
public class NCustomPaintCallback : NPaintCallback
{
NChart m_Chart;
NChartControl m_Control;
public NCustomPaintCallback(NChartControl control, NChart chart)
{
m_Chart = chart;
m_Control = control;
}
/// <summary>
/// Occurs after the panel is painted.
/// </summary>
/// <param name="panel"></param>
/// <param name="eventArgs"></param>
public override void OnAfterPaint(NPanel panel, NPanelPaintEventArgs eventArgs)
{
NGraphics graphics = eventArgs.Graphics;
NFillStyle fill = new NColorFillStyle(Color.FromArgb(125, Color.Red));
NScale2DToViewTransformation transform = new NScale2DToViewTransformation(m_Control.View.Context,
m_Chart,
(int)StandardAxis.PrimaryX,
(int)StandardAxis.PrimaryY);
// create a simple polygon with coordinates close the to the line
NPointF[] points = new NPointF[4];
NPointF begin = new NPointF(10, 10);
NPointF end = new NPointF(20, 20);
double dx = begin.X - end.X;
double dy = begin.Y - end.Y;
float length = (float)Math.Sqrt(dx * dx + dy * dy);
NLineF line = NLineF.FromTwoPoints(begin, end);
NRayF ray = line.ToNRayF();
NVector2DF normVector = ray.DirectionVector.NormalVector;
normVector.Multiply(50);
points[0] = begin + ray.PointFromTime(0);
points[1] = begin + ray.PointFromTime(length);
points[2] = begin + ray.PointFromTime(length) + normVector.ToNPointF();
points[3] = begin + ray.PointFromTime(0) + normVector.ToNPointF();
for (int i =0; i < points.Length; i++)
{
NVector2DD vecScalePoint = new NVector2DD(points[i].X, points[i].Y);
NPointF viewPoint = new NPointF();
transform.Transform(vecScalePoint, ref viewPoint);
points[i] = viewPoint;
}
graphics.PaintPolygon(fill, null, points);
}
}
I'll check if we can add a polygon series for this purpose as it's missing badly from the component.
Hope this helps - let me know if you meet any probelms.
Best regards,
Bob