Added point.r function option

Per https://github.com/c3js/c3/issues/179 supplying a function to `point.r` is supported.
This commit is contained in:
rbanderton
2016-08-11 09:40:20 -05:00
committed by GitHub
parent df11fe36a1
commit e611d74ee8

2
c3/c3.d.ts vendored
View File

@@ -747,7 +747,7 @@ declare namespace c3 {
/**
* The radius size of each point.
*/
r?: number;
r?: number | ((d: any) => number);
focus?: {
expand: {