Meter Component - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Meter Component

insert a meter in a worksheet or document

 

Description

Image of the Components Palette Item

Image of an Inserted Meter

Meter Properties

Meter Component Example

Description

• 

The meter component performs an action or a series of actions to communicate with other embedded components when adjusting the needle in the meter, although assigning an action to a component is not required.  

• 

To perform an action when the meter is adjusted, click the meter, and then select Edit Value Changed Code to open the Code Editor dialog for the meter. Enter the commands you want to perform in the Code Editor dialog.

• 

You need to specify one or more embedded components that will display the output when adjusting the needle in the meter. For more information, see the Meter Component Example on this page.

• 

The meter component is customized by setting options in the Meter context panel. To view the settings in the context panel, select the meter component. Actions are associated with components using routines in the DocumentTools package.

• 

The Name property is used to reference the meter gauge when using the routines from the DocumentTools package.

• 

The Show Axis Label and Show Axis Tick Marks properties displays an axis label and axis tick marks on the meter respectively when selected.

• 

The Continuous Update on Drag property performs a continuous action on one or more components when selected. The Maple commands in the Edit Value Changed Code property must be programmed as such to perform this continuous action.

Image of the Components Palette Item

Image of an Inserted Meter

Meter Properties

• 

The following table describes the control and use of the meter component options.

  

An x in the Get column indicates that the option can be read, that is, retrieved by using the DocumentTools[GetProperty] tool.

  

An x in the Set column indicates that the option can be written, that is, set by using the DocumentTools[SetProperty] tool.

  

 

Option

Get

Set

Option Type

continuousupdate

x

x

true or false

enabled

x

x

true or false

lower

x

x

integer or floating-point number

majorticks

x

x

positive integer or positive floating-point number

minorticks

x

x

positive integer or positive floating-point number

pixelheight

x

x

positive integer

pixelwidth

x

x

positive integer

showlabels

x

x

true or false

showticks

x

x

true or false

tooltip

x

x

string

type

x

 

string

upper

x

x

integer or floating-point number

value

x

x

integer or floating-point number

visible

x

x

true or false

  

 

  

continuousupdate 

  

Indicates whether the component should update continuously during drag operations. By default, the value is false.

  

enabled 

  

Whether the component is enabled. If enabled, the thumb can be moved with the mouse. By default, the value is false.

  

lower 

  

The lower bound on the meter. By default, the value is 0.

  

majorticks 

  

The interval between the major ticks on the meter. By default, the value is 20.

  

minorticks 

  

The interval between the minor ticks on the meter. By default, the value is 10.

  

pixelheight 

  

The height of the meter image in pixels. By default, the value is 97.

  

pixelwidth 

  

The width of the meter image in pixels. By default, the value is 207.

  

showlabels 

  

Indicates if range values are shown. By default, the value is true.

  

showticks 

  

Indicates if tick marks are shown. By default, the value is true.

  

tooltip 

  

The text that appears when the user hovers the mouse over the component.

  

type 

  

The type of the component. This returns "Meter".

  

upper 

  

The upper bound on the meter. By default, the value is 100.

  

value 

  

The current position of the meter marker. By default, the value is 0.

  

visible 

  

Specifies if the meter is visible. By default, the value is true .

Meter Component Example

Note: To interact with the examples provided below, open this help page as a worksheet and then execute the worksheet.

This examples shows how you can change the transparency of a 3-D plot using the Meter component.

To insert the components and configure the Plot component:

1. 

Insert a Plot and Meter component. For information on displaying the Maple palettes, see the Show Palettes help page.

2. 

Click the Plot component to open the context panel.

3. 

In the Plot Expression field, enter plot3d(x^2*cos(y), x =-1 .. 1, y=-2*Pi .. 2*Pi);.

 

To configure the Meter component so that it changes the transparency of the plot:

1. 

Click the Meter component to display the context panel.

2. 

Set the following values:

• 

Value at Highest Position=1

• 

Current Position=0.5

• 

Spacing of Major Tick Marks=0.25

• 

Spacing of Minor Tick Marks=0.125

• 

Select Enable Input

• 

Select Continuous Update on Drag

3. 

Click Edit Value Changed Code.

This launches the Code Editor dialog.

4. 

Before the end use; statement in the dialog, enter the following command:

SetProperty("Plot0", value, plot3d(x^2*cos(y), x=-1..1, y=-2*Pi..2*Pi, transparency=GetProperty("Meter0", value)));

Note: Ensure the names of the components are correct (that is, that they match the Name fields for their components).

5. 

Click  or from the File menu, select Save Code to accept all changes.

6. 

From the File menu, select Close Code Editor.

When you change the value of the Meter component (by moving its needle), the transparency of the 3-D plot changes to the value you set.

 

See Also

DocumentTools

DocumentTools[GetProperty]

DocumentTools[SetProperty]

EmbeddedComponents