我有一个倒X / Y轴的条形图。这是我的代码和输出:
var myData = {};
myData.x = 'x';
myData.xFormat = "%Y-%m-%d";
myData.type = 'bar';
myX = app.reportsCollection.countedByDay.plotData.X;
myY = app.reportsCollection.countedByDay.plotData.Y;
myX.splice(0,0,'x');
myY.splice(0,0,'Nuevos Reportes');
myData.columns = [];
myData.columns.push(myX);
//http://stackoverflow.com/a/586189/1862909
myData.columns.push(myY);
var chart = c3.generate({
bindto: elementID,
data: myData,
size: {
height: 300
},
bar: {
width: {
ratio: 0.5 // this makes bar width 50% of length between ticks
}
// or
//width: 100 // this makes bar width 100px
},
axis: {
x: {
type: 'timeseries',
tick: {
format: "%b-%d"
}
},
},
legend: {
show: false
}
});
我需要的是链接到X刻度标签上的特定页面。在示例中,Otra
应该是超链接。
我尝试将链接作为文本包含在myX
变量中,但它不起作用。
知道怎么做吗?
答案 0 :(得分:5)
没有打开框,c3将标签标记为tspan元素并使用d3的.text函数添加它们,因此尝试在<A>
元素中模板化为c3的tick函数中的文本不起作用。
看看Mark接受的答案(不是我的答案) - put a icon on graph c3.js - d3.js - 显示如何用其他元素替换c3中的刻度标签。更改它以获取现有文本然后用几个A标签包装它,并包含适当的href并重新添加为html。
事实上,tspans可以直接包含A标签,因此可以这样做 - http://jsfiddle.net/k9Dbf/745/。难以理解它应该是xlink:href而不仅仅是href ...
重要的小提琴:
d3.selectAll('.c3-axis-x .tick tspan')
.each(function(d,i){
// augment tick contents with link
var self = d3.select(this);
var text = self.text();
self.html("<A xlink:href='"+arrayOfLinks[i]+"'>"+text+"</A>");
});
编辑:
解决方案2: 你也可以完全跳过A元素并在tspan上使用点击监听器,虽然它现在需要一些css来给出光标指示器
d3.selectAll('.c3-axis-x .tick tspan')
.on("click", function(d,i){
window.open(arrayOfLinks[i], "_blank");
});
.c3-axis-x .tick tspan:hover {
cursor: pointer;
}