What problem does this feature solve?
When there is a large amout of time points on the timeline, it is not practical to show all the labels in the same time. And it is difficult to distinguish what is the time value of a particular time point in massive points.
Moving the mouse over that point to check the tooltip is one way. But it won't work on the checkpoint (the tooltip won't occur when moving mouse onto the checkpoint or dragging it). When the timeline is playing, it is harder to know the information about the current checkpoint.
If I can dispatch the showTip action in the timelinechanged event, it would help a lot. (Or is there any solution I've missed?)
What does the proposed API look like?
dispatchAction({
type: 'showTip',
component: 'timeline',
// ...
})
What problem does this feature solve?
When there is a large amout of time points on the timeline, it is not practical to show all the labels in the same time. And it is difficult to distinguish what is the time value of a particular time point in massive points.
Moving the mouse over that point to check the tooltip is one way. But it won't work on the checkpoint (the tooltip won't occur when moving mouse onto the checkpoint or dragging it). When the timeline is playing, it is harder to know the information about the current checkpoint.
If I can dispatch the
showTipaction in thetimelinechangedevent, it would help a lot. (Or is there any solution I've missed?)What does the proposed API look like?