Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions src/chart/sunburst/SunburstSeries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export interface SunburstSeriesNodeItemOption extends
StatesOptionMixin<SunburstStateOption<CallbackDataParams>, SunburstStatesMixin>,
OptionDataItemObject<OptionDataValue>
{
nodeClick?: 'rootToNode' | 'link'
nodeClick?: 'rootToNode' | 'link' | false
// Available when nodeClick is link
link?: string
target?: string
Expand Down Expand Up @@ -138,7 +138,7 @@ export interface SunburstSeriesOption extends
*/
// highlightPolicy?: 'descendant' | 'ancestor' | 'self'

nodeClick?: 'rootToNode' | 'link'
nodeClick?: 'rootToNode' | 'link' | false

renderLabelForZeroData?: boolean

Expand Down
2 changes: 1 addition & 1 deletion src/chart/treemap/TreemapSeries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export interface TreemapSeriesOption
* be on left depth, the behaviour would be changing root. Otherwise
* use behavious defined above.
*/
nodeClick?: 'zoomToNode' | 'link'
nodeClick?: 'zoomToNode' | 'link' | false

breadcrumb?: BoxLayoutOptionMixin & {
show?: boolean
Expand Down