@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
30 lines • 1.38 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 });
// (C) 2019 GoodData Corporation
var BaseChartConfigurationPanel_1 = require("./BaseChartConfigurationPanel");
var axis_1 = require("../../constants/axis");
var BarChartConfigurationPanel = /** @class */ (function (_super) {
__extends(BarChartConfigurationPanel, _super);
function BarChartConfigurationPanel() {
return _super !== null && _super.apply(this, arguments) || this;
}
BarChartConfigurationPanel.prototype.getAxesConfiguration = function (type) {
return axis_1.BAR_CHART_AXIS_CONFIG[type];
};
return BarChartConfigurationPanel;
}(BaseChartConfigurationPanel_1.default));
exports.default = BarChartConfigurationPanel;
//# sourceMappingURL=BarChartConfigurationPanel.js.map