SpreadJS Documentation
getMinimumColor Method
Gets the minimum scale color.
Syntax
var instance = new GcSpread.Sheets.TwoScaleRule(minType, minValue, minColor, maxType, maxValue, maxColor);
var value; // Type: string
value = instance.getMinimumColor();
function getMinimumColor() : string;

Return Value

The minimum scale color.
Example
This example uses the getMinimumColor method.
var scale = new GcSpread.Sheets.TwoScaleRule();
scale.setMaximumColor("blue");
scale.setMaximumType(2);
scale.setMaximumValue(100);
scale.setMinimumColor("yellow");
scale.setMinimumType(1);
scale.setMinimumValue(10);
scale.ranges = [new GcSpread.Sheets.Range(0, 0, 10, 3)];
activeSheet.getConditionalFormats().addRule(scale);
activeSheet.setValue(0,0, 1,3);
activeSheet.setValue(1,0, 50,3);
activeSheet.setValue(2,0, 100,3);
alert("Color: " + scale.getMinimumColor() + " Type: " + scale.getMinimumType() + " Value: " + scale.getMinimumValue());
Remarks
The default value is rgba(0, 255, 255, 255).
See Also

Reference

TwoScaleRule class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.