隐藏 dc.js 行图中的指定行
Hide Specified Row in dc.js rowchart
有谁知道在 crossfilter/dc.js 中隐藏行图表中一行的好方法,即不绘制特定键。
我想显示一些相关的小 %s 并隐藏适合其他类别的 99%(并防止用户对该行进行过滤)。
这不起作用...因为它会过滤数据
function remove_bins(source_group) {
return {
all:function () {
return source_group.all().filter(function(d) {
return d.key = 1;
});
}
} };
var filtered_group = remove_bins(我的组);
我只需要防止图表显示大行。我希望最好在图表内完成。
欢迎提出任何想法!
瑞安
查看常见问题解答:其中有一节是关于预过滤数据的。您应该能够很容易地适应这些示例之一。
https://github.com/dc-js/dc.js/wiki/FAQ#filter-the-data-before-its-charted
如果需要,将在此处添加详细信息。
也许用条件过滤柱状图的维度?
.dimension(function(d) { if (d.xxx != "N/A") { return d.Genre ; }})
有谁知道在 crossfilter/dc.js 中隐藏行图表中一行的好方法,即不绘制特定键。
我想显示一些相关的小 %s 并隐藏适合其他类别的 99%(并防止用户对该行进行过滤)。
这不起作用...因为它会过滤数据
function remove_bins(source_group) {
return {
all:function () {
return source_group.all().filter(function(d) {
return d.key = 1;
});
}
} };
var filtered_group = remove_bins(我的组);
我只需要防止图表显示大行。我希望最好在图表内完成。
欢迎提出任何想法!
瑞安
查看常见问题解答:其中有一节是关于预过滤数据的。您应该能够很容易地适应这些示例之一。
https://github.com/dc-js/dc.js/wiki/FAQ#filter-the-data-before-its-charted
如果需要,将在此处添加详细信息。
也许用条件过滤柱状图的维度?
.dimension(function(d) { if (d.xxx != "N/A") { return d.Genre ; }})