@vtex/styleguide
Version:
> VTEX Styleguide React components ([Docs](https://vtex.github.io/styleguide))
42 lines (41 loc) • 763 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var commonDefaultProps = exports.commonDefaultProps = {
container: {
height: '100%',
width: '100%',
aspect: 4.0 / 3.0
},
xAxis: {
axisLine: false,
tickLine: false,
tick: true,
tickMargin: 5,
hide: false,
type: 'category'
},
yAxis: {
axisLine: false,
tickLine: false,
tick: true,
tickMargin: 5,
hide: false,
type: 'number'
},
zAxis: {
type: 'number'
},
grid: {
horizontal: false,
vertical: false
}
};
var colors = exports.colors = ['#EE7850', '#4CAABF', '#9F50B6', '#479A5E', '#0000FF'];
var tooltipProps = exports.tooltipProps = {
cursor: false,
labelStyle: {
color: '#828282'
}
};