gpt4 book ai didi

angular - 在 ng2-charts 中隐藏未使用的轴

转载 作者:太空狗 更新时间:2023-10-29 18:33:14 26 4
gpt4 key购买 nike

我正在使用两个 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'} }
]

未在文档中找到任何内容。

最佳答案

   If you want to remove the x axis and y axis data so to do that you need 
to use scales and put in bar-chart-demo.ts file and inside export
class you have to paste like that what i mentioned below
and it worked .

public barChartOptions:any = {
scaleShowVerticalLines: false,
animation: false,
scaledisplay:false,
responsive: true,

scales: {
xAxes: [
{
display: false
}
],
yAxes: [
{
display: false
}
]
}


};``

关于angular - 在 ng2-charts 中隐藏未使用的轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40068076/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com