User:Jcreer/SMS:DMI Control Curve Elements: Difference between revisions

From XMS Wiki
Jump to navigationJump to search
(Created page with "=====Element ''<x_column>'', ''<y_column>''===== {|class="wikitable" |- |width="70"|'''Info''' |width="530"|Used to define the attributes in the column such as text (heading)....")
 
No edit summary
Line 1: Line 1:
=====Element ''<control_curve>''=====
{|class="wikitable"
|-
|width="70"|'''Info'''
|width="530"| Displays an curve push button. When pushed the xy curve values can be updated and a curve is displayed.
|-
|'''Versions'''
|2
|-
|'''Attributes'''
|none
|-
|'''Children'''
| [[SMS:Dynamic Model Interface Schema#Element <max_rows>|max_rows]], [[SMS:Dynamic Model Interface Schema#Element <flags>|flags]], [[SMS:Dynamic Model Interface Schema#Element <x_column>|x_column]], [[SMS:Dynamic Model Interface Schema#Element <y_column>|y_column]], [[SMS:Dynamic Model Interface Schema#Element <unique_name>|unique_name]], [[SMS:Dynamic Model Interface Schema#Element <dependency>|dependency]]
|-
|'''Used by'''
| [[SMS:Dynamic Model Interface Schema#Element <item>|item]], [[SMS:Dynamic Model Interface Schema#Element <row>|row]], [[SMS:Dynamic Model Interface Schema#Element <column>|column]]
|-
|'''Example'''
|This example creates a curve limited to 10 rows.
<item>
    <control_curve>
        <unique_name>myCurve1</unique_name>
        <max_rows>10</max_rows>
        <flags>XY_USEDATE</flags>
        <x_column>
          <text>Time</time>
        </x_column>
        <y_column>
  <text>Velocity</text> 
        </y_column>
    </control_curve>
  …
|}
=====Element ''<x_column>'', ''<y_column>''=====
=====Element ''<x_column>'', ''<y_column>''=====
{|class="wikitable"
{|class="wikitable"

Revision as of 21:58, 10 March 2015

Element <control_curve>
Info Displays an curve push button. When pushed the xy curve values can be updated and a curve is displayed.
Versions 2
Attributes none
Children max_rows, flags, x_column, y_column, unique_name, dependency
Used by item, row, column
Example This example creates a curve limited to 10 rows.
<item>
   <control_curve>
       <unique_name>myCurve1</unique_name>
       <max_rows>10</max_rows>
       <flags>XY_USEDATE</flags>
       <x_column>
          <text>Time
       </x_column>
       <y_column>
  	<text>Velocity</text>   
       </y_column>	
   </control_curve>
  …


Element <x_column>, <y_column>
Info Used to define the attributes in the column such as text (heading).
Versions 2
Attributes none
Children text
Used by control_curve
Example This example creates a curve button with the date/time flag.
<item>
    <control_curve>
        <unique_name>myCurve1</unique_name>
        <flags>XY_USEDATE</flags>
        <x_column>
           <text>Time
        </x_column>
        <y_column>
           <text>Velocity</text>  
        </y_column>	
    </control_curve>
  …