The SDL Component Suite is an industry leading collection of components supporting scientific and engineering computing. Please visit the SDL Web site for more information....



Line


Unit: SDL_rchart
Class: TSmithChart
Declaration: [1] procedure Line (x1,y1, x2,y2: double);
[2] procedure Line (x1,y1, x2,y2: integer);
[3] procedure Line (x1,y1: integer; x2,y2: double);
[4] procedure Line (x1,y1: double; x2,y2: integer);

The method Line draws a line from the point (x1,y1) to the point (x2,y2). The drawing cursor is set to the position (x2,y2). The line can be drawn in different coordinate system modes: version [1] uses the world coordinates (these are the coordinates shown at the axes of the chart), version [2] uses the screen coordinates in pixels, and versions [3] and [4] mix them. Using screen coordinates (which are declared as integer) has the effect that the line segment remains at a fixed position even if the chart is panned or zoomed. Using mixed mode coordinates ([3] and [4]) allows to implement a "stretching" effect, with one end of the line staying in place and the other moving with the world coordinate system.

The line width may be adjusted by the property LineWidth. The color of the voids in dashed lines is controlled by the property FillColor.

Hint: In the Light Edition the number of chart elements is restricted to 1000 elements.



Last Update: 2023-Dec-13