axidio-styleguide-library1-v2 0.4.7 → 0.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/group-chart/group-chart.component.mjs +173 -142
- package/esm2022/lib/horizontal-grouped-bar-with-scroll-zoom/horizontal-grouped-bar-with-scroll-zoom.component.mjs +6 -7
- package/fesm2022/axidio-styleguide-library1-v2.mjs +177 -147
- package/fesm2022/axidio-styleguide-library1-v2.mjs.map +1 -1
- package/lib/group-chart/group-chart.component.d.ts +4 -2
- package/package.json +1 -1
|
@@ -57,6 +57,8 @@ interface ChartConfiguration {
|
|
|
57
57
|
yAxisCustomlabelStyles?: string;
|
|
58
58
|
xAxisCustomlabelStyles?: string;
|
|
59
59
|
isRia?: boolean;
|
|
60
|
+
minBarWidth?: number;
|
|
61
|
+
enableAutoScroll?: boolean;
|
|
60
62
|
}
|
|
61
63
|
export declare class GroupChartComponent extends ComponentUniqueId implements OnInit {
|
|
62
64
|
containerElt: ElementRef;
|
|
@@ -99,14 +101,14 @@ export declare class GroupChartComponent extends ComponentUniqueId implements On
|
|
|
99
101
|
private calculateMaxValue;
|
|
100
102
|
private createLineYScale;
|
|
101
103
|
private createSVGStructure;
|
|
104
|
+
private renderGridLines;
|
|
102
105
|
private renderAxes;
|
|
103
106
|
private renderXAxis;
|
|
107
|
+
private hasLongLabels;
|
|
104
108
|
private renderMultiChartXAxis;
|
|
105
109
|
private renderXLabelsOnSameLine;
|
|
106
110
|
private renderYAxis;
|
|
107
111
|
private applyAxisVisibilitySettings;
|
|
108
|
-
private renderYAxisGrid;
|
|
109
|
-
private renderXAxisGrid;
|
|
110
112
|
private renderLineYAxis;
|
|
111
113
|
private renderBars;
|
|
112
114
|
private prepareBarData;
|