import type { IndicatorStyleProps } from './types'; export const DEFAULT_INDICATOR_STYLE_PROPS: Partial = { backgroundFill: '#262626', backgroundLineCap: 'round', backgroundLineWidth: 1, backgroundStroke: '#333', backgroundZIndex: -1, formatter: (val) => val.toString(), labelFill: '#fff', labelFontSize: 12, labelTextBaseline: 'middle', padding: [2, 4], position: 'right', radius: 0, zIndex: 999, };