Skip to content

Commit

Permalink
feat(legends): add documentation for custom symbol shape
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphaël Benitte authored and Raphaël Benitte committed Aug 25, 2018
1 parent 50b2d39 commit 7adc838
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions website/src/components/guides/legends/SymbolShape.js
@@ -1,4 +1,5 @@
import React from 'react'
import dedent from 'dedent-js'
import { LegendSvgItem, DIRECTION_LEFT_TO_RIGHT } from '@nivo/legends'

const shapes = ['square', 'circle', 'triangle', 'diamond']
Expand Down Expand Up @@ -51,5 +52,25 @@ export default () => (
</div>
))}
</div>
<p>
You can also use a custom shape passing a component to <code>symbolShape</code>:
</p>
<pre className="code-block guide__code">
{dedent`const CustomSymbolShape = ({
x, y, size, fill, borderWidth, borderColor
}) => (
<rect
x={x}
y={y}
transform={\`rotate(45 \${size/2} \${size/2})\`}
fill={fill}
strokeWidth={borderWidth}
stroke={borderColor}
width={size}
height={size}
style={{ pointerEvents: 'none' }}
/>
)`}
</pre>
</div>
)

0 comments on commit 7adc838

Please sign in to comment.