How to properly rotate text labels in a D3 sunburst diagram(如何在 D3 旭日形图中正确旋转文本标签)
问题描述
在以下 D3 旭日:
http://jsfiddle.net/maxl/eabFC/
.attr("transform", function(d) {
return "rotate(" + (d.x + d.dx / 2 - Math.PI / 2) / Math.PI * 180 + ")";
});
左象限中的标签是倒置的,我想对它们进行旋转,以便文本从左到右阅读.
The labels in the left quadrants are upside down, I would like to perform a rotation on them so that the text reads from left to right.
转换应该只适用于从大约 100 度到 270 度的弧.
The transformation should only apply to the arcs from approximately 100 degree to 270 degree.
推荐答案
如下示例:http:///www.jasondavies.com/coffee-wheel/
我在这里编辑了你的 jsfiddle:http://tributary.io/inlet/4127332/
I've edited your jsfiddle here: http://tributary.io/inlet/4127332/
你将不得不处理你的长标签,上面的例子展示了如何做多行.
You are going to have to deal with your long labels and the above example shows how to do multi-line.
另外请注意,您使用的是旧版本的 d3,不再需要单独调用 d3.layout.这是 d3 的新闪亮版本的链接:
Also note that you are using an old version of d3, it is no longer necessary to call d3.layout separately. Here is the link to new shiny version of d3:
<script src="http://d3js.org/d3.v3.js"></script>
这篇关于如何在 D3 旭日形图中正确旋转文本标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 D3 旭日形图中正确旋转文本标签
基础教程推荐
- 在for循环中使用setTimeout 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 动态更新多个选择框 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 我什么时候应该在导入时使用方括号 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01