@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
34 lines • 1.71 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 pointsChart_1 = require("./pointsChart");
var ScatterPlotColorStrategy = /** @class */ (function (_super) {
__extends(ScatterPlotColorStrategy, _super);
function ScatterPlotColorStrategy() {
return _super !== null && _super.apply(this, arguments) || this;
}
ScatterPlotColorStrategy.prototype.createColorAssignment = function (colorPalette, colorMapping, _viewByAttribute, _stackByAttribute, executionResponse, afm) {
var colorAssignment = this.singleMeasureColorMapping(colorPalette, colorMapping, executionResponse, afm);
return {
fullColorAssignment: colorAssignment,
};
};
ScatterPlotColorStrategy.prototype.createPalette = function (colorPalette, colorAssignment, _viewByAttribute, stackByAttribute) {
return _super.prototype.createSingleColorPalette.call(this, colorPalette, colorAssignment, stackByAttribute);
};
return ScatterPlotColorStrategy;
}(pointsChart_1.default));
exports.default = ScatterPlotColorStrategy;
//# sourceMappingURL=scatterPlot.js.map