<< Click to Display Table of Contents >> Gauge Component Script |
![]() ![]() ![]() |
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 |
|
100 |
|
200 |
|
300 |
|
400 |
|
500 |
|
600 |
|
700 |
|
800 |
|
900 |
|
910 |
|
920 |
|
1000 |
|
1010 |
|
2000 |
|
2100 |
|
2200 |
|
2300 |
|
1950 |
|
1960 |
|
1970 |
|
1980 |
|
2410 |
|
2420 |
|
2430 |
|
2440 |
|
2450 |
|
2460 |
|
2470 |
|
2480 |