Skip to content

Commit 1151af4

Browse files
committed
Fixed alignment issues
1 parent 2827bd0 commit 1151af4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)