Defines how the TRSCustomLineChart component connects 2 points
Namespace: RSChartConsts
Delphi
|
type
TLineChartStyle = (
lsStraight,
lsStairStep,
lsStairStepInverted,
lsCurveInterpolation,
lsCurveApproximation);
|
|
Name
|
Description
|
|
lsCurveApproximation
|
Draws all points together in a smooth curve, where the curve approximates the curve described by the points but does not necessarily go through the points
|
|
lsCurveInterpolation
|
Draws all points together in a smooth curve, where the curve goes through every point
|
|
lsStairStep
|
Draws a horizontal line from the first point to the x position of the second point, and then draws a vertical line up to the end point.
|
|
lsStairStepInverted
|
Draws a vertical line from the first point to the Y position of the second point, and then draws a horizontal line up to the end point.
|
|
lsStraight
|
Draws a straight line between the 2 points
|
Top
|