我使用两个Y轴(右和左)当我隐藏其中一个的所有使用的数据集时,刻度(轴标签)变为1到-1。
我想隐藏轴或标签时,它不使用,任何想法?
隐藏前:Both Y Axes used
隐藏后:Right Y-Axis Changed - Not used
选项>缩放:
yAxes: [
{type: "linear", id: "y-axis-0", display: true, position: "right",gridLines:{display: false},
scaleLabel:{display: true, labelString: 'mBar'}},
{type: "linear", id: "y-axis-1", display: true, position: "left",ticks: {beginAtZero:true},
scaleLabel:{display: true, labelString: 'Knots/°C'} }
]
字符串
文件里什么都没找到。
2条答案
按热度按时间kyxcudwk1#
字符串
gmol16392#
您可以在代码中隐藏轴。只需添加一个angular on-mouseover事件,并使用negation!条件将显示设置为true/false:
字符串