UNPKG

nuke-biz-custom-chart

Version:

custom-chart

13 lines (11 loc) 204 B
export default class Axis { static draw = (chart, props) => { const { name = '', label = { fontSize: 14, }, grid } = props; chart.axis(name, { label, grid, }); }; }