Skip to content

Commit 61a4259

Browse files
committed
AG-15782 Implement series[type='radial-column'].styler
1 parent 960d011 commit 61a4259

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/ag-charts-enterprise/src/series/radial-column/radialColumnSeries.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ export class RadialColumnSeries extends RadialColumnSeriesBase<_ModuleSupport.Ra
6565
}
6666

6767
protected override hasItemStylers(): boolean {
68-
return this.properties.itemStyler != null || this.properties.label.itemStyler != null;
68+
return (
69+
this.properties.itemStyler != null ||
70+
this.properties.styler != null ||
71+
this.properties.label.itemStyler != null
72+
);
6973
}
7074
}

0 commit comments

Comments
 (0)