Const Do nothing on click.
// Example syntax
const chart = lc.ChartXY({
legend: {
entries: {
events: {
click: LegendEntryClickBehaviors.doNothing
}
}
}
})
Make the clicked entry the only visible one.
// Example syntax
const chart = lc.ChartXY({
legend: {
entries: {
events: {
click: LegendEntryClickBehaviors.focusClicked
}
}
}
})
Toggle visibility of the clicked entry (default).
// Example syntax
const chart = lc.ChartXY({
legend: {
entries: {
events: {
click: LegendEntryClickBehaviors.toggleIndividualVisibility
}
}
}
})
Collection of callbacks for legend entry click events.