ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
46 lines • 1.39 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var chartTheme_1 = require("./chartTheme");
var palette = {
fills: [
'#5BC0EB',
'#FDE74C',
'#9BC53D',
'#E55934',
'#FA7921',
'#fa3081'
],
strokes: [
'#4086a4',
'#b1a235',
'#6c8a2b',
'#a03e24',
'#af5517',
'#af225a'
]
};
var VividLight = /** @class */ (function (_super) {
__extends(VividLight, _super);
function VividLight() {
return _super !== null && _super.apply(this, arguments) || this;
}
VividLight.prototype.getPalette = function () {
return palette;
};
return VividLight;
}(chartTheme_1.ChartTheme));
exports.VividLight = VividLight;
//# sourceMappingURL=vividLight.js.map