@nativescript-community/ui-chart
Version:
A powerful chart / graph plugin, supporting line, bar, pie, radar, bubble, and candlestick charts as well as scaling, panning and animations.
19 lines • 450 B
JavaScript
export class GradientColor {
constructor(startColor, endColor) {
this.startColor = startColor;
this.endColor = endColor;
}
getStartColor() {
return this.startColor;
}
setStartColor(startColor) {
this.startColor = startColor;
}
getEndColor() {
return this.endColor;
}
setEndColor(endColor) {
this.endColor = endColor;
}
}
//# sourceMappingURL=GradientColor.js.map