We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36947d8 commit 157a808Copy full SHA for 157a808
samples/charts/toolbar/custom-tool/src/index.tsx
@@ -28,6 +28,7 @@ export default class Sample extends React.Component<any, any> {
28
this.toolbar = r;
29
this.setState({});
30
}
31
+ private customIconName: IgrToolActionLabel
32
private chart: IgrCategoryChart
33
private chartRef(r: IgrCategoryChart) {
34
this.chart = r;
@@ -63,7 +64,8 @@ export default class Sample extends React.Component<any, any> {
63
64
<IgrToolActionLabel
65
title="Custom Icon"
66
iconName="CustomIcon"
- iconCollectionName="CustomCollection">
67
+ iconCollectionName="CustomCollection"
68
+ name="CustomIconName">
69
</IgrToolActionLabel>
70
</IgrToolbar>
71
</div>
0 commit comments