-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(colors): add colors config for Pie/Stack/TreeMap components
- Loading branch information
Raphael Benitte
committed
Apr 19, 2016
1 parent
657d8cc
commit 584ff47
Showing
4 changed files
with
50 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { PropTypes } from 'react'; | ||
|
||
|
||
export const lineInterpolation = PropTypes.oneOf([ | ||
'linear', // piecewise linear segments, as in a polyline. | ||
'linear-closed', // close the linear segments to form a polygon. | ||
'step', // alternate between horizontal and vertical segments, as in a step function. | ||
'step-before', // alternate between vertical and horizontal segments, as in a step function. | ||
'step-after', // alternate between horizontal and vertical segments, as in a step function. | ||
'basis', // a B-spline, with control point duplication on the ends. | ||
'basis-open', // an open B-spline; may not intersect the start or end. | ||
'basis-closed', // a closed B-spline, as in a loop. | ||
'bundle', // equivalent to basis, except the tension parameter is used to straighten the spline. | ||
'cardinal', // a Cardinal spline, with control point duplication on the ends. | ||
'cardinal-open', // an open Cardinal spline; may not intersect the start or end, but will intersect other control points. | ||
'cardinal-closed', // a closed Cardinal spline, as in a loop. | ||
'monotone' // cubic interpolation that preserves monotonicity in y. | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters