Merge pull request #23944 from stuartflgray/master

[Chart.js] Add radius 'r' property to ChartPoint interface for bubble charts
This commit is contained in:
Benjamin Lichtman
2018-02-28 13:37:57 -08:00
committed by GitHub

View File

@@ -162,6 +162,7 @@ declare namespace Chart {
interface ChartPoint {
x?: number | string | Date;
y?: number;
r?: number;
}
interface ChartConfiguration {