w1301625107 / Vue-Gantt-chart

使用Vue做数据控制的Gantt图表
https://w1301625107.github.io/Vue-Gantt-chart/demo/index.html
MIT License
636 stars 140 forks source link

timeline下面一行是天,上面一行是月份能处理吗? #119

Closed ldfctx closed 1 year ago

ldfctx commented 1 year ago

您好,我想要下面一行显示天,上面一行显示月份,我现在是用自定义的时间轴,但是底部滚动条滚动的时候,超过一定范围上面的文字会消失,请问有其他的处理方式吗? 效果图是这样的: image

w1301625107 commented 1 year ago
<template v-slot:timeline="{day , getTimeScales}">
    <!-- 你的时间刻度组件 -->
    <TestTimeline :day="day"></TestTimeline>
</template>
ldfctx commented 1 year ago

嗯嗯 谢谢