Welcome, Guest
Username: Password: Remember me
Components and Libraries for Graphics Development, discussions, problems and suggestions.
  • Page:
  • 1

TOPIC:

How to use a TPlotFunctionPanel Component 1 year 4 months ago #17415

  • Droid c3p0
  • Droid c3p0's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 22
  • Thank you received: 0
lz_PlotFunction Library with simple Chart components. Properties: BackColor This is the background color of the plotting area GridColor When you make this the same as Backcolor, the grid is invisible LayerOption For easy plotting of a single layer this can be set to False. It is not possible to set this to True directly (see methods) Margin The width of the border of the plot in pixels PlotMode Three plotmodes are possible: pmBar, pmLine and pmDot PlotPen Properties of the plotting pen. If LayerOption is False, then all sub-properties can be set. If LayerOption is True, then information about the plotting pen is transferred via the LayerOptions method (methods) Title The Title is at the top center of the plot and uses the Font property PlotBMP This is a bitmap holding the whole graph (see demo for its use) The X-axis properties: XLabel Label at the X-axis XMarks When True, the X-axis has marks XMarksFont Font used for the XMarks XMarksInterval Interval between to lines in the grid (applies for linear scales only) XMax Maximum value of X that is visible XMin Minimal value of X that is visible XScaleLog When TRUE the scale is logarithmic (the interval is determined by the component) For the Y-axis the same applies. Methods: AddXY(X,Y:Extended) With this method you can add points (or lines) to the plot Example for i:= -10 to 10 do [b]PlotPanel1.AddXY(i,i*i)[/b] This plots a parbola .The line is plotted with the PlotPen properties Note you can only plot a single layer. ................

The problem I have is when trying to use:
PlotPanel1.AddXY(........)

It Appears an Error Message:
Compile Project, Target: ........: Exit code 1, Errors: 1
........ Error: Identifier idents no member "AddXY"
How to use a TPlotFunctionPanel Component ?
MX Linux 23.2;
Typhon version: 8.3
OS: 64 bit MX Linux or 64 bit Windows 11

Please Log in or Create an account to join the conversation.

Last edit: by Droid c3p0.

How to use a TPlotFunctionPanel Component 1 year 4 months ago #17416

  • Matis A.
  • Matis A.'s Avatar
  • Away
  • Moderator
  • Moderator
  • Posts: 1060
  • Thank you received: 149
lz_PlotFunction Library it's a simple Chart Library.
Open lz_PlotFunction package,

1) Click on "Open Package in CodeOcean Explorer" button

2) In CodeOcean Examples Form select the Sample project for lz_PlotFunction Library

 


 



You can use lz_taChart library, it's a big Chart Library.

LAB CT ver 8.00 in pl_ExControls  library has some new Chart components.

 
PilotLogic Core Programmer
Attachments:
The following user(s) said Thank You: Droid c3p0

Please Log in or Create an account to join the conversation.

Last edit: by Matis A..
  • Page:
  • 1