gpt4 book ai didi

charts - nvd3折线图,如何删除网格线和yaxis

转载 作者:行者123 更新时间:2023-12-04 04:51:43 26 4
gpt4 key购买 nike

我已使用取景器制作了折线图。

这是我的初始代码

     var chart = nv.models.lineWithFocusChart();

// chart.transitionDuration(500);
chart.xAxis
.tickFormat(d3.format(',g'));
chart.xAxis
.axisLabel("Date");
chart.xAxis.tickPadding(0);


chart.x2Axis
.tickFormat(d3.format(',g'));




chart.yAxis
.tickFormat(d3.format(',.2g'));
chart.y2Axis
.tickFormat(d3.format(',.2h'));
// chart.showYAxis(false);

我想删除y轴标签(即,我不希望在y轴上显示任何数字)。

我也想删除所有网格线。

是否有类似chart.yAxis.something的东西在这里执行此操作?

谢谢

最佳答案

To remove tick on y-axis


.nv-axis.nv-y .tick line {
display:none;
}

To remove tick on x axis


.nv-axis.nv-x .tick line {
display:none;
}

To remove label on x axis


.showXAxis(false)

To remove label on y axis


.showYAxis(false)

To remove all the grid lines


.nv-axis .tick line {
display:none;
}

关于charts - nvd3折线图,如何删除网格线和yaxis,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22055289/

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