Merge pull request #31042 from MichaelTsafrir/patch-2

Added missing blendStroke property to PieProps
This commit is contained in:
Jesse Trinity
2018-12-10 13:04:48 -08:00
committed by GitHub
+1
View File
@@ -450,6 +450,7 @@ export interface PieProps extends EventAttributes, Partial<PresentationAttribute
} | React.ReactElement<any> | ContentRenderer<any> | boolean;
activeShape?: object | ContentRenderer<any> | React.ReactElement<any>;
activeIndex?: number | number[];
blendStroke?: boolean;
}
export class Pie extends React.Component<PieProps> { }