Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当折线图的两个数据点之间没有值时,如何隐藏它们之间的时间间隔?
比如3分:
我试过了
series: { connectNulls: fals, }
不工作。这个还有其他属性吗?
不显示数据点
用作null值:
null
series: { data: [5, 2, null, null, 4, 5] }
您不需要使用connectNulls.
connectNulls
不显示 x 轴刻度
当您想隐藏空数据点的 x 轴刻度时,请将 x 轴切换为type: category并排除这些值。确保也将它们从您的系列中排除。
type: category
xAxis: { type: 'category', data: ['thursday', 'friday', 'monday', 'tuesday'] }, series: { data: [5, 2, 4, 5] }