我需要在堆叠图上添加起点和终点,有没有什么方法可以添加它。
在给定的图片中,我需要从4而不是0开始SaaS Quick Ratio。
rqenqsqc1#
设置为series.threshold给予为列提供基底,在您的情况下,可以从y轴的4开始列。
Highcharts.chart('container', { chart: { type: 'column' }, title: { text: 'Stacked column chart' }, xAxis: { categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas'] }, series: [{ name: 'John', threshold: 4, data: [5, 3, 4, 7, 2] }, { name: 'Jane', data: [2, 2, 3, 2, 1] }, { name: 'Joe', data: [3, 4, 4, 2, 5] }] });
演示:https://jsfiddle.net/BlackLabel/f73zcu4t/
1条答案
按热度按时间rqenqsqc1#
设置为series.threshold给予为列提供基底,在您的情况下,可以从y轴的4开始列。
演示:https://jsfiddle.net/BlackLabel/f73zcu4t/