Difference between revisions of "Component: Base2dChart (Development)"
From Flowcode Help
Jump to navigationJump to searchLine 76: | Line 76: | ||
''<span style="color:red;">No additional examples</span>'' | ''<span style="color:red;">No additional examples</span>'' | ||
+ | |||
+ | |||
Line 81: | Line 83: | ||
==Macro reference== | ==Macro reference== | ||
+ | ===AddDataXYY1=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 114: | Line 117: | ||
+ | ===AddData=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 137: | Line 141: | ||
+ | ===GetDataXY=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 165: | Line 170: | ||
+ | ===AddDataXY=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 193: | Line 199: | ||
+ | ===AddCatData=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 221: | Line 228: | ||
+ | ===SetMode=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 239: | Line 247: | ||
+ | ===ClearData=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 252: | Line 261: | ||
+ | ===RefreshChart=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 265: | Line 275: | ||
+ | ===GetData=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 288: | Line 299: | ||
+ | ===AddDataCXYY1=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- |
Revision as of 11:48, 3 February 2023
Author | Steve Tandy |
Version | 1.1 |
Category | Development |
Contents
Base2dChart component
A base component for creating 2d charts.
Component Source Code
Please click here to download the component source project: FC_Comp_Source_Base2dChart.fcfx
Please click here to view the component source code (Beta): FC_Comp_Source_Base2dChart.fcfx
Detailed description
No detailed description exists yet for this component
Examples
No additional examples
Macro reference
AddDataXYY1
AddData
![]() |
AddData |
Adds a data point (y-value only) to the specified series. | |
![]() |
Series |
Which series to add to (1-8) | |
![]() |
Value |
The data point value | |
![]() |
Return |
GetDataXY
AddDataXY
AddCatData
![]() |
AddCatData |
Adds a data point (y-value only) to the specified series. | |
![]() |
Series |
Which series to add to (1-8) | |
![]() |
Category |
![]() |
Value |
The data point value | |
![]() |
Return |
SetMode
![]() |
SetMode |
Select the mode of operation | |
![]() |
bUseArrays |
True if data points are added to a hidden buffer; False if data is drawn directly onto chart. | |
![]() |
Return |
ClearData
![]() |
ClearData |
Removes all datapoints from the chart. | |
![]() |
Return |
RefreshChart
![]() |
RefreshChart |
Redraws the chart. | |
![]() |
Return |
GetData
![]() |
GetData |
Gets a data point from the specified series. | |
![]() |
Series |
Which series to add to (1-8) | |
![]() |
Index |
The data point index (1 - 32767) | |
![]() |
Return |
AddDataCXYY1