Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
keep gorup titles visible when groupclick is set to toggleitem
  • Loading branch information
archmoj committed Aug 25, 2021
commit f97300e294f51a499c8fe7a1fb49633fd575756b
2 changes: 1 addition & 1 deletion src/components/legend/get_legend_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ module.exports = function getLegendData(calcdata, opts) {
trace: {
showlegend: firstItemTrace.showlegend,
legendgroup: firstItemTrace.legendgroup,
visible: firstItemTrace.visible
visible: opts.groupclick === 'toggleitem' ? true : firstItemTrace.visible
}
});
}
Expand Down