gpt4 book ai didi

javascript - D3 : How to remove tick marks at the top and bottom of Y axis

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:40:04 31 4
gpt4 key购买 nike

我不知道如何关闭 D3 图表中 y 轴顶部和底部的这些刻度线。任何帮助将不胜感激!

这是我生成轴的方式:

// Set the ranges
var xScale = d3.time.scale().range([0, width]);
var yScale = d3.scale.linear().range([height, 0]);

// Define the axes
var xAxis = d3.svg.axis().scale(xScale)
.orient("bottom")
.ticks(2)
.tickFormat(formatTime);

var yAxis = d3.svg.axis().scale(yScale)
.orient("left")
.ticks(2)
.tickFormat(d3.format("$,"));

最佳答案

您可以使用此脚本删除 y 轴上的所有刻度。

d3.selectAll(".y.axis").selectAll(".tick").selectAll("line").remove();

关于javascript - D3 : How to remove tick marks at the top and bottom of Y axis,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45891319/

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