@vtex/styleguide
Version:
> VTEX Styleguide React components ([Docs](https://vtex.github.io/styleguide))
34 lines (31 loc) • 694 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var BAR_GAP = exports.BAR_GAP = '20%';
var Layout = exports.Layout = undefined;
(function (Layout) {
Layout["VERTICAL"] = "vertical";
Layout["HORIZONTAL"] = "horizontal";
})(Layout || (exports.Layout = Layout = {}));
var defaultProps = exports.defaultProps = {
layout: Layout.HORIZONTAL
};
var chartDefaultConfig = exports.chartDefaultConfig = {
xAxis: {
axisLine: true,
tickLine: false,
tickMargin: 5,
type: 'category',
tick: true,
hide: false
},
yAxis: {
axisLine: true,
tickLine: false,
tickMargin: 10,
type: 'number',
tick: true,
hide: false
}
};