File size: 485 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import { settingsMapper } from '../../../lib/settings'
import { mapAxis, mapFormat, mapLegends } from '../../../lib/property-mappers'
export default settingsMapper(
{
xFormat: mapFormat,
yFormat: mapFormat,
axisTop: mapAxis,
axisRight: mapAxis,
axisBottom: mapAxis,
axisLeft: mapAxis,
legends: mapLegends,
},
{
exclude: ['enable axisTop', 'enable axisRight', 'enable axisBottom', 'enable axisLeft'],
}
)
|