/** * 一些默认的样式配置 */ export const BACKGROUND_STYLE = { fill: '#416180', opacity: 0.05, }; export const FOREGROUND_STYLE = { fill: '#5B8FF9', opacity: 0.15, cursor: 'move', }; export const DEFAULT_HANDLER_WIDTH = 10; export const HANDLER_STYLE = { width: DEFAULT_HANDLER_WIDTH, height: 24, }; export const TEXT_STYLE = { textBaseline: 'middle', fill: '#000', opacity: 0.45, }; export const SLIDER_CHANGE = 'sliderchange';