21 lines
393 B
TypeScript
21 lines
393 B
TypeScript
import { DataZoomComponentOption } from 'echarts'
|
|
|
|
export const generateDataZoom = function (): DataZoomComponentOption | DataZoomComponentOption[] {
|
|
return [
|
|
{
|
|
show: true,
|
|
realtime: true,
|
|
start: 0,
|
|
end: 100,
|
|
xAxisIndex: [0, 1],
|
|
},
|
|
{
|
|
type: 'inside',
|
|
realtime: true,
|
|
start: 0,
|
|
end: 100,
|
|
xAxisIndex: [0, 1],
|
|
},
|
|
]
|
|
}
|