Gauge Component Script

<< Click to Display Table of Contents >>

Current:  Script > Yonghong Script Object Reference List > Component Level Functions 

Gauge Component Script

Previous pageReturn to chapter overviewNext page

 

Functions

Instructions

Examples

getCol

Get the field information of the current instrument component binding

var col1=Gauge1.binding.getCol();//No parameters, both Gauge1 and Gauge2 text components require bound data

Gauge2.binding.setCol(col1);   //Set the data bound to Gauge2 to col1

setCol

Bind field to current text component

var col=new BCol("price",DOUBLE,false);

var col1=new MeasureCol(SUM,col,null);

Gauge1.binding.setCol(col1);

data

Set data for the meter. Get the instrument's bound data value.

Gauge1.data=234;//var a=dashboard1.data;

effect

Whether to show the gradient effect

Gauge1.effect=false;

effectType

Gradient method

Gauge1.effectType = 5;

gaugeType

The type of instrument, detailed in the table below (instrument type)

Gauge1.gaugeType=200;

majorIncrement

Main scale

Gauge1.majorIncrement="10000";

max

Set the maximum value of the meter

Gauge1.max="50000";

min

Set the minimum value of the instrument

Gauge1.max="0";

minorIncrement

Minor scale

Gauge1.minorIncrement="5000";

rangeColors

Set the color of each range

var color1=new Color(java.awt.Color.red);

var color2=new Color(java.awt.Color.blue);

var color3=new Color(java.awt.Color.green);

var a=[color1,color2,color3];

Gauge1.rangeColors=a;

ranges

Predetermined area

var a=[10000,30000,50000];

Gauge1.ranges=a;

runTimeMajorIncrement

The default major scale

var a=Gauge1.runTimeMajorIncrement;

runTimeMax

The default maximum

var a=Gauge1.runTimeMax;

runTimeMin

The default minimum

var a=Gauge1.runTimeMin;

runTimeMinorIncrement

Default minor tick marks

var a=Gauge1.runTimeMinorIncrement;

themeType

Whether the default theme corresponds to the dashboard type

Gauge1.themeType = true;

valueRangeColors

The color of the range value. The received value is an array. If it is a single color, it will be the same color. If it is a gradient, it will be different colors.

var arr = [];

arr[0] = 0xff0000;

arr[1] = 0x00ff00;

Gauge1.valueRangeColors[0];

 

Gauge Type

Functions

Instructions

40

gauge1

100

gauge2

200

gauge3

300

gauge4

400

gauge5

500

gauge6

600

gauge7

700

gauge8

800

gauge9

900

gauge10

910

gauge11

920

gauge12

1000

gauge13

1010

gauge14

2000

gauge15

2100

gauge16

2200

gauge17

2300

gauge18

1950

gauge34

1960

gauge33

1970

gauge32

1980

gauge31

2410

gauge38

2420

gauge37

2430

gauge36

2440

gauge35

2450

gauge42

2460

gauge41

2470

gauge40

2480

gauge39