File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -266,12 +266,13 @@ class MyComponent extends React.Component{
266266 ` 0(location) -> 0 (value) ` means clicking the first (zero indexed) data plot , render the 0th child ,
267267 ` 1(location) -> 2(value) ` means clicking the second data plot, render the 1st Child (Note: It is 0-indexed )
268268 ** Null case** : You can pass ` null ` for a data plot for which you dont want a drill down.
269- - Array ( Object ) - Representation of child mapped with plot in form of an object of shape
270- ` { "plotPosition": Number, "childPosition": Number } `
269+ - Array ( Object ) - Representation of child mapped with plot in form of an object of shape
270+ ` { "plotPosition": Number, "childPosition": Number } `
271271 This object holds information about which child render on a data plot is clicked.
272272 ` Eg. [{ plotPosition: 1 , childPosition: 0}, { plotPosition: 0, childPosition: 1}] `
273273 Note: plotChildMap does not honour heterogeneous data , eg. Number and Object
274- both. ` [ 0 , { plotPosition:0, childPosition: 1 } ] `
274+ both.
275+ ` [ 0 , { plotPosition:0, childPosition: 1 } ] `
275276
276277- btnConfig [ Object] - Basic configuration without overriding the default button styles
277278 - ` text ` : PropTypes.string - Button Text
You can’t perform that action at this time.
0 commit comments