MindFusion.Charting Programmer's Guide

Line Class

Remarks See Also
 





A class that represents line objects in line charts.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public sealed class Line : ChartElement

Visual Basic  Copy Code

Public NotInheritable Class Line
    Inherits ChartElement

JavaScript  Copy Code

// class
Line.prototype = {}

 Remarks

MindFusion.Charting builds a Line object for each line / area graphics it draws in a line chart. If the chart is drawn with scatter shapes, they are represented separately by Scatter objects.

All properties of the Line class are read-only. You can set them through the LineChart class. When the user hits a line in hit-testing, the Line object that holds the hitted point is returned. 

 Inheritance Hierarchy

System.Object
    MindFusion.Charting.ChartElement
        MindFusion.Charting.Line

 See Also