Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够在 D3(DynamicDataDisplay)的 ChartPlotter 中隐藏 X 轴(标签、刻度等)。可用于 D3 的文档数量基本上是不存在的。
任何帮助将不胜感激。
据我在源代码中看到的,AxisBase 是一个 ContentControl,因此您应该能够使其不可见。
这可能太粗略了,所以您也可以查看默认样式/模板,复制并更改它以隐藏/删除您想要隐藏的部分。
plotter.HorizontalAxis.Remove();
在代码隐藏中。刚刚在我的 WPF 应用程序中完成。