axidio-styleguide-library1-v2 0.3.30 → 0.3.31
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/horizontal-bars-with-scroll-zoom/horizontal-bars-with-scroll-zoom.component.mjs +238 -219
- package/esm2022/lib/horizontal-grouped-bar-with-scroll-zoom/horizontal-grouped-bar-with-scroll-zoom.component.mjs +93 -1265
- package/fesm2022/axidio-styleguide-library1-v2.mjs +330 -1483
- package/fesm2022/axidio-styleguide-library1-v2.mjs.map +1 -1
- package/lib/horizontal-bars-with-scroll-zoom/horizontal-bars-with-scroll-zoom.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -6488,9 +6488,11 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6488
6488
|
LONG_TICK_LENGTH: 16,
|
|
6489
6489
|
SHORT_TICK_LENGTH_BG: 5,
|
|
6490
6490
|
LONG_TICK_LENGTH_BG: 30,
|
|
6491
|
-
|
|
6492
|
-
|
|
6493
|
-
|
|
6491
|
+
MIN_MOBILE_BAR_WIDTH: 28, // Adjusted for better mobile fit
|
|
6492
|
+
DESKTOP_MIN_BAR_WIDTH: 40,
|
|
6493
|
+
TABLET_MIN_BAR_WIDTH: 35, // Added tablet-specific width
|
|
6494
|
+
MOBILE_BAR_PADDING: 10, // Reduced padding for mobile
|
|
6495
|
+
TABLET_BAR_PADDING: 8, // Added tablet-specific padding
|
|
6494
6496
|
ZOOM_THRESHOLD: 30,
|
|
6495
6497
|
ZOOM_IN_THRESHOLD: 8,
|
|
6496
6498
|
};
|
|
@@ -6555,6 +6557,48 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6555
6557
|
removeExistingChart() {
|
|
6556
6558
|
d3.select('#' + this.uniqueId).remove();
|
|
6557
6559
|
}
|
|
6560
|
+
getDeviceConfig() {
|
|
6561
|
+
const width = window.innerWidth;
|
|
6562
|
+
return {
|
|
6563
|
+
isMobile: width < 768, // Changed from 576 to 768 for better mobile coverage
|
|
6564
|
+
isTablet: width >= 768 && width < 1024, // Changed from 576-992 to 768-1024
|
|
6565
|
+
isDesktop: width >= 1024, // Changed from 992 to 1024
|
|
6566
|
+
};
|
|
6567
|
+
}
|
|
6568
|
+
configureResponsiveSettings(device) {
|
|
6569
|
+
if (device.isMobile) {
|
|
6570
|
+
this.chartConfiguration.margin = { top: 15, right: 5, bottom: 35, left: 25 };
|
|
6571
|
+
this.chartConfiguration.numberOfYTicks = 4;
|
|
6572
|
+
this.chartConfiguration.svgHeight = 55;
|
|
6573
|
+
}
|
|
6574
|
+
else if (device.isTablet) {
|
|
6575
|
+
this.chartConfiguration.margin = { top: 20, right: 15, bottom: 40, left: 35 };
|
|
6576
|
+
this.chartConfiguration.numberOfYTicks = 5;
|
|
6577
|
+
this.chartConfiguration.svgHeight = 65;
|
|
6578
|
+
}
|
|
6579
|
+
else {
|
|
6580
|
+
// Desktop/Large screens
|
|
6581
|
+
const width = window.innerWidth;
|
|
6582
|
+
if (width >= 1920) {
|
|
6583
|
+
// Large monitors
|
|
6584
|
+
this.chartConfiguration.margin = { top: 35, right: 35, bottom: 55, left: 70 };
|
|
6585
|
+
this.chartConfiguration.numberOfYTicks = 8;
|
|
6586
|
+
this.chartConfiguration.svgHeight = 85;
|
|
6587
|
+
}
|
|
6588
|
+
else if (width >= 1366) {
|
|
6589
|
+
// Medium monitors
|
|
6590
|
+
this.chartConfiguration.margin = { top: 30, right: 30, bottom: 50, left: 60 };
|
|
6591
|
+
this.chartConfiguration.numberOfYTicks = 7;
|
|
6592
|
+
this.chartConfiguration.svgHeight = 80;
|
|
6593
|
+
}
|
|
6594
|
+
else {
|
|
6595
|
+
// Small desktops/laptops
|
|
6596
|
+
this.chartConfiguration.margin = { top: 25, right: 25, bottom: 45, left: 50 };
|
|
6597
|
+
this.chartConfiguration.numberOfYTicks = 6;
|
|
6598
|
+
this.chartConfiguration.svgHeight = 75;
|
|
6599
|
+
}
|
|
6600
|
+
}
|
|
6601
|
+
}
|
|
6558
6602
|
mergeConfigurations() {
|
|
6559
6603
|
for (const key in this.defaultConfiguration) {
|
|
6560
6604
|
this.chartConfiguration[key] = ChartHelper.getValueByConfigurationType(key, this.defaultConfiguration, this.customChartConfiguration);
|
|
@@ -6573,20 +6617,26 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6573
6617
|
}
|
|
6574
6618
|
return metaData;
|
|
6575
6619
|
}
|
|
6576
|
-
calculateDimensions(chartContainer, verticalContainer, margin, dataLength) {
|
|
6620
|
+
calculateDimensions(chartContainer, verticalContainer, margin, device, dataLength) {
|
|
6577
6621
|
const containerWidth = chartContainer.node().getBoundingClientRect().width;
|
|
6578
6622
|
const containerHeight = verticalContainer.node().getBoundingClientRect().height;
|
|
6579
|
-
|
|
6580
|
-
const rightAxisWidth = this.CONSTANTS.RIGHT_SVG_WIDTH;
|
|
6581
|
-
const availableWidth = containerWidth - leftAxisWidth - rightAxisWidth;
|
|
6582
|
-
let width = availableWidth;
|
|
6623
|
+
let width = containerWidth - margin.left - margin.right;
|
|
6583
6624
|
let height = containerHeight * (this.chartConfiguration.svgHeight / 100) - margin.top - margin.bottom;
|
|
6625
|
+
// Responsive zoom handling
|
|
6584
6626
|
if (dataLength > this.CONSTANTS.ZOOM_THRESHOLD && this.isZoomedOut) {
|
|
6585
|
-
const minWidth =
|
|
6627
|
+
const minWidth = device.isMobile
|
|
6628
|
+
? dataLength * 12
|
|
6629
|
+
: device.isTablet
|
|
6630
|
+
? dataLength * 20
|
|
6631
|
+
: dataLength * 25;
|
|
6586
6632
|
width = Math.max(width, minWidth);
|
|
6587
6633
|
}
|
|
6588
6634
|
if (dataLength > this.CONSTANTS.ZOOM_IN_THRESHOLD && !this.isZoomedOut) {
|
|
6589
|
-
width =
|
|
6635
|
+
width = device.isMobile
|
|
6636
|
+
? dataLength * 50
|
|
6637
|
+
: device.isTablet
|
|
6638
|
+
? dataLength * 90
|
|
6639
|
+
: dataLength * 130;
|
|
6590
6640
|
}
|
|
6591
6641
|
if (this.chartConfiguration.isFullScreen) {
|
|
6592
6642
|
height = this.chartConfiguration.svgHeight !== 80
|
|
@@ -6594,41 +6644,28 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6594
6644
|
: containerHeight;
|
|
6595
6645
|
}
|
|
6596
6646
|
if (this.chartConfiguration.isDrilldownChart) {
|
|
6597
|
-
|
|
6647
|
+
const offset = device.isMobile ? 60 : device.isTablet ? 90 : 130;
|
|
6648
|
+
height = containerHeight - margin.top - margin.bottom - offset;
|
|
6598
6649
|
}
|
|
6599
|
-
const isMobileOrTablet = window.innerWidth < 1024;
|
|
6600
6650
|
let barWidth;
|
|
6601
6651
|
let barPadding;
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
|
|
6605
|
-
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
|
|
6610
|
-
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
barPadding = 40;
|
|
6614
|
-
}
|
|
6615
|
-
else if (dataLength <= 5) {
|
|
6616
|
-
barWidth = 35;
|
|
6617
|
-
barPadding = 30;
|
|
6618
|
-
}
|
|
6619
|
-
else {
|
|
6620
|
-
barWidth = 25;
|
|
6621
|
-
barPadding = 25;
|
|
6622
|
-
}
|
|
6652
|
+
let requiredSvgWidth;
|
|
6653
|
+
if (device.isMobile) {
|
|
6654
|
+
barWidth = this.CONSTANTS.MIN_MOBILE_BAR_WIDTH;
|
|
6655
|
+
barPadding = this.CONSTANTS.MOBILE_BAR_PADDING;
|
|
6656
|
+
requiredSvgWidth = Math.max(width - this.CONSTANTS.RIGHT_SVG_WIDTH, (barWidth + barPadding) * dataLength + this.CONSTANTS.LEFT_RIGHT_SPACES * 2 +
|
|
6657
|
+
this.CONSTANTS.RIGHT_SVG_WIDTH - barPadding);
|
|
6658
|
+
}
|
|
6659
|
+
else if (device.isTablet) {
|
|
6660
|
+
barWidth = this.CONSTANTS.TABLET_MIN_BAR_WIDTH;
|
|
6661
|
+
barPadding = this.CONSTANTS.TABLET_BAR_PADDING;
|
|
6662
|
+
requiredSvgWidth = Math.max(width - this.CONSTANTS.RIGHT_SVG_WIDTH, (barWidth + barPadding) * dataLength + this.CONSTANTS.LEFT_RIGHT_SPACES * 2);
|
|
6623
6663
|
}
|
|
6624
6664
|
else {
|
|
6625
|
-
barWidth = this.CONSTANTS.
|
|
6626
|
-
barPadding =
|
|
6665
|
+
barWidth = Math.max(this.CONSTANTS.DESKTOP_MIN_BAR_WIDTH, (width - this.CONSTANTS.RIGHT_SVG_WIDTH - this.CONSTANTS.LEFT_RIGHT_SPACES * 2) / dataLength);
|
|
6666
|
+
barPadding = 0;
|
|
6667
|
+
requiredSvgWidth = width - this.CONSTANTS.RIGHT_SVG_WIDTH;
|
|
6627
6668
|
}
|
|
6628
|
-
const totalBarsWidth = barWidth * dataLength;
|
|
6629
|
-
const totalGaps = barPadding * (dataLength - 1);
|
|
6630
|
-
const minRequiredWidth = totalBarsWidth + totalGaps + (this.CONSTANTS.LEFT_RIGHT_SPACES * 2);
|
|
6631
|
-
const requiredSvgWidth = Math.max(availableWidth, minRequiredWidth);
|
|
6632
6669
|
return {
|
|
6633
6670
|
width,
|
|
6634
6671
|
height,
|
|
@@ -6639,109 +6676,63 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6639
6676
|
requiredSvgWidth,
|
|
6640
6677
|
};
|
|
6641
6678
|
}
|
|
6642
|
-
createSvgContainers(chartContainer, dimensions, margin
|
|
6643
|
-
|
|
6644
|
-
// Calculate total height including space for X-axis label if present
|
|
6645
|
-
const xLabelSpace = hasXLabel ? 30 : 0;
|
|
6646
|
-
const totalHeight = dimensions.height + margin.top + margin.bottom + xLabelSpace;
|
|
6647
|
-
// Main wrapper
|
|
6648
|
-
const chartWrapper = chartContainer
|
|
6679
|
+
createSvgContainers(chartContainer, dimensions, margin) {
|
|
6680
|
+
const outerContainer = chartContainer
|
|
6649
6681
|
.append('div')
|
|
6650
6682
|
.attr('id', this.uniqueId)
|
|
6651
|
-
.attr('class', '
|
|
6652
|
-
.style('position', 'relative')
|
|
6683
|
+
.attr('class', 'outer-container')
|
|
6653
6684
|
.style('width', '100%')
|
|
6654
|
-
.style('height',
|
|
6655
|
-
|
|
6656
|
-
.
|
|
6657
|
-
.
|
|
6658
|
-
.style('
|
|
6659
|
-
|
|
6660
|
-
.style('top', '0')
|
|
6661
|
-
.style('width', '80px')
|
|
6662
|
-
.style('height', `${dimensions.height + margin.top + margin.bottom}px`)
|
|
6663
|
-
.style('background-color', 'var(--card-bg)')
|
|
6664
|
-
.style('z-index', '10');
|
|
6665
|
-
const svgYAxisLeft = leftAxisContainer
|
|
6685
|
+
.style('height', dimensions.height)
|
|
6686
|
+
.style('overflow-x', 'hidden')
|
|
6687
|
+
.style('padding-left', `${margin.left}px`)
|
|
6688
|
+
.style('margin-left', '10px')
|
|
6689
|
+
.style('padding-right', `${this.CONSTANTS.RIGHT_SVG_WIDTH}px`);
|
|
6690
|
+
const svgYAxisLeft = outerContainer
|
|
6666
6691
|
.append('svg')
|
|
6667
6692
|
.attr('width', '80')
|
|
6668
6693
|
.attr('height', dimensions.height + margin.top + margin.bottom)
|
|
6669
|
-
.append('g')
|
|
6670
|
-
.attr('transform', `translate(70,${margin.top})`);
|
|
6671
|
-
// Right Y-axis - Fixed
|
|
6672
|
-
const rightAxisContainer = chartWrapper
|
|
6673
|
-
.append('div')
|
|
6674
|
-
.attr('class', 'right-axis-container')
|
|
6675
6694
|
.style('position', 'absolute')
|
|
6676
|
-
.style('
|
|
6677
|
-
.style('
|
|
6678
|
-
.
|
|
6679
|
-
.
|
|
6680
|
-
|
|
6681
|
-
.style('z-index', '10');
|
|
6682
|
-
const svgYAxisRight = rightAxisContainer
|
|
6695
|
+
.style('left', '0')
|
|
6696
|
+
.style('z-index', 1)
|
|
6697
|
+
.append('g')
|
|
6698
|
+
.attr('transform', `translate(${margin.left + 10},${margin.top})`);
|
|
6699
|
+
const svgYAxisRight = outerContainer
|
|
6683
6700
|
.append('svg')
|
|
6684
6701
|
.attr('width', this.CONSTANTS.RIGHT_SVG_WIDTH)
|
|
6685
6702
|
.attr('height', dimensions.height + margin.top + margin.bottom)
|
|
6703
|
+
.style('position', 'absolute')
|
|
6704
|
+
.style('right', '2px')
|
|
6705
|
+
.style('z-index', 1)
|
|
6686
6706
|
.append('g')
|
|
6687
6707
|
.attr('transform', `translate(0,${margin.top})`);
|
|
6688
|
-
|
|
6689
|
-
const scrollableContainer = chartWrapper
|
|
6690
|
-
.append('div')
|
|
6691
|
-
.attr('class', 'scrollable-chart-container')
|
|
6692
|
-
.style('position', 'absolute')
|
|
6693
|
-
.style('left', '80px') // Exactly where left container ends
|
|
6694
|
-
.style('right', `${this.CONSTANTS.RIGHT_SVG_WIDTH}px`)
|
|
6695
|
-
.style('top', '0')
|
|
6696
|
-
.style('width', 'auto')
|
|
6697
|
-
.style('height', `${dimensions.height + margin.top + margin.bottom}px`)
|
|
6698
|
-
.style('overflow-x', 'auto')
|
|
6699
|
-
.style('overflow-y', 'hidden');
|
|
6700
|
-
const innerContainer = scrollableContainer
|
|
6708
|
+
const innerContainer = outerContainer
|
|
6701
6709
|
.append('div')
|
|
6702
|
-
.attr('class', 'inner-
|
|
6703
|
-
.style('
|
|
6710
|
+
.attr('class', 'inner-container')
|
|
6711
|
+
.style('width', '100%')
|
|
6712
|
+
.style('overflow-x', 'auto');
|
|
6704
6713
|
const svg = innerContainer
|
|
6705
6714
|
.append('svg')
|
|
6706
6715
|
.attr('width', dimensions.requiredSvgWidth)
|
|
6707
6716
|
.attr('height', dimensions.height + margin.top + margin.bottom + 30)
|
|
6708
6717
|
.append('g')
|
|
6709
6718
|
.attr('transform', `translate(0,${margin.top})`);
|
|
6710
|
-
|
|
6711
|
-
|
|
6712
|
-
|
|
6713
|
-
.attr('class', 'bottom-label-container')
|
|
6714
|
-
.style('position', 'absolute')
|
|
6715
|
-
.style('left', '80px')
|
|
6716
|
-
.style('right', `${this.CONSTANTS.RIGHT_SVG_WIDTH}px`)
|
|
6717
|
-
.style('bottom', '0')
|
|
6718
|
-
.style('height', `${xLabelSpace}px`)
|
|
6719
|
-
.style('display', 'flex')
|
|
6720
|
-
.style('justify-content', 'center')
|
|
6721
|
-
.style('align-items', 'center')
|
|
6722
|
-
.style('background-color', 'var(--card-bg)')
|
|
6723
|
-
.style('z-index', '10');
|
|
6724
|
-
return { svg, svgYAxisLeft, svgYAxisRight, innerContainer, bottomLabelContainer };
|
|
6725
|
-
}
|
|
6726
|
-
createScales(data, layers, lineData, dimensions) {
|
|
6719
|
+
return { svg, svgYAxisLeft, svgYAxisRight, innerContainer };
|
|
6720
|
+
}
|
|
6721
|
+
createScales(data, layers, lineData, dimensions, device) {
|
|
6727
6722
|
const { width, height, barWidth, barPadding } = dimensions;
|
|
6728
|
-
//
|
|
6729
|
-
const
|
|
6730
|
-
const totalSpacing = (data.length - 1) * barPadding;
|
|
6731
|
-
const requiredWidth = totalBarsWidth + totalSpacing + (this.CONSTANTS.LEFT_RIGHT_SPACES * 2);
|
|
6732
|
-
const effectiveWidth = Math.max(width, requiredWidth);
|
|
6733
|
-
const paddingRatio = barPadding / (barWidth + barPadding);
|
|
6734
|
-
// X-scale starts from 0 (no left spacing for grid alignment)
|
|
6723
|
+
// Adjust padding based on device
|
|
6724
|
+
const padding = device.isMobile ? 0.15 : device.isTablet ? 0.3 : 0.5;
|
|
6735
6725
|
const xScale = d3
|
|
6736
6726
|
.scaleBand()
|
|
6737
|
-
.rangeRound([
|
|
6727
|
+
.rangeRound([
|
|
6728
|
+
this.CONSTANTS.LEFT_RIGHT_SPACES,
|
|
6729
|
+
width - this.CONSTANTS.RIGHT_SVG_WIDTH - this.CONSTANTS.LEFT_RIGHT_SPACES
|
|
6730
|
+
])
|
|
6738
6731
|
.domain(data.map(d => d.name).reverse())
|
|
6739
|
-
.
|
|
6740
|
-
.paddingOuter(0.1) // Small padding for visual spacing
|
|
6741
|
-
.align(0.5);
|
|
6732
|
+
.padding(padding);
|
|
6742
6733
|
const xScaleFromOrigin = d3
|
|
6743
6734
|
.scaleBand()
|
|
6744
|
-
.rangeRound([width, 0])
|
|
6735
|
+
.rangeRound([width - this.CONSTANTS.RIGHT_SVG_WIDTH, 0])
|
|
6745
6736
|
.domain(data.map(d => d.name).reverse());
|
|
6746
6737
|
const yScale = d3.scaleLinear().rangeRound([height, 0]);
|
|
6747
6738
|
let maxValue = d3.max(layers, (d) => d3.max(d, (d) => d[1]));
|
|
@@ -6787,7 +6778,7 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6787
6778
|
}
|
|
6788
6779
|
return { xAxis, yAxis, yLineAxis };
|
|
6789
6780
|
}
|
|
6790
|
-
renderBars(svg, layers, scales, metaData, dimensions) {
|
|
6781
|
+
renderBars(svg, layers, scales, metaData, dimensions, device) {
|
|
6791
6782
|
const layer = svg
|
|
6792
6783
|
.selectAll('.layer')
|
|
6793
6784
|
.data(layers)
|
|
@@ -6799,11 +6790,11 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6799
6790
|
.selectAll('rect')
|
|
6800
6791
|
.data((d) => d)
|
|
6801
6792
|
.enter();
|
|
6802
|
-
this.appendRectangles(rect, scales, metaData, dimensions);
|
|
6793
|
+
this.appendRectangles(rect, scales, metaData, dimensions, device);
|
|
6803
6794
|
this.addInteractions(rect, svg, metaData, scales);
|
|
6804
6795
|
return rect;
|
|
6805
6796
|
}
|
|
6806
|
-
appendRectangles(rect, scales, metaData, dimensions) {
|
|
6797
|
+
appendRectangles(rect, scales, metaData, dimensions, device) {
|
|
6807
6798
|
const { barWidth, barPadding } = dimensions;
|
|
6808
6799
|
const { xScale, yScale } = scales;
|
|
6809
6800
|
rect
|
|
@@ -6822,17 +6813,17 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6822
6813
|
}
|
|
6823
6814
|
return 0;
|
|
6824
6815
|
})
|
|
6825
|
-
.attr('x', (d) => {
|
|
6826
|
-
|
|
6827
|
-
|
|
6816
|
+
.attr('x', (d, i) => {
|
|
6817
|
+
if (device.isMobile) {
|
|
6818
|
+
return this.CONSTANTS.LEFT_RIGHT_SPACES + i * (barWidth + barPadding);
|
|
6819
|
+
}
|
|
6828
6820
|
if (!this.chartConfiguration.isMultiChartGridLine) {
|
|
6829
|
-
return
|
|
6821
|
+
return xScale(d.data.name);
|
|
6830
6822
|
}
|
|
6831
6823
|
if (this.chartConfiguration.isDrilldownChart && this.chartData.data.length <= 3) {
|
|
6832
|
-
return
|
|
6824
|
+
return xScale(d.data.name) + xScale.bandwidth() / 2 - 35;
|
|
6833
6825
|
}
|
|
6834
|
-
|
|
6835
|
-
return xPosition + (bandwidth - calculatedWidth) / 2;
|
|
6826
|
+
return xScale(d.data.name) + xScale.bandwidth() * 0.1;
|
|
6836
6827
|
})
|
|
6837
6828
|
.attr('height', (d) => {
|
|
6838
6829
|
if (!isNaN(d[0]) && !isNaN(d[1])) {
|
|
@@ -6842,8 +6833,10 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6842
6833
|
return 0;
|
|
6843
6834
|
})
|
|
6844
6835
|
.attr('width', (d) => {
|
|
6845
|
-
if (
|
|
6836
|
+
if (device.isMobile)
|
|
6846
6837
|
return barWidth;
|
|
6838
|
+
if (!this.chartConfiguration.isMultiChartGridLine)
|
|
6839
|
+
return xScale.bandwidth();
|
|
6847
6840
|
if (this.chartConfiguration.isDrilldownChart && this.chartData.data.length <= 3) {
|
|
6848
6841
|
return 70;
|
|
6849
6842
|
}
|
|
@@ -6899,13 +6892,23 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6899
6892
|
const value = d[1] - d[0];
|
|
6900
6893
|
if (isNaN(value))
|
|
6901
6894
|
return;
|
|
6895
|
+
const device = this.getDeviceConfig();
|
|
6902
6896
|
const bandwidth = xScale.bandwidth();
|
|
6903
|
-
//
|
|
6904
|
-
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
|
-
|
|
6908
|
-
|
|
6897
|
+
// Responsive tooltip width
|
|
6898
|
+
let width;
|
|
6899
|
+
if (device.isMobile) {
|
|
6900
|
+
width = Math.min(bandwidth + 40, 150);
|
|
6901
|
+
}
|
|
6902
|
+
else if (device.isTablet) {
|
|
6903
|
+
width = Math.min(bandwidth + 60, 200);
|
|
6904
|
+
}
|
|
6905
|
+
else {
|
|
6906
|
+
width = /week/i.test(d.data.name) && /\d{4}-\d{2}-\d{2}/.test(d.data.name)
|
|
6907
|
+
? '250px'
|
|
6908
|
+
: bandwidth + this.CONSTANTS.LEFT_RIGHT_SPACES * 2 > 180
|
|
6909
|
+
? '180px'
|
|
6910
|
+
: bandwidth + this.CONSTANTS.LEFT_RIGHT_SPACES * 2;
|
|
6911
|
+
}
|
|
6909
6912
|
svg
|
|
6910
6913
|
.append('foreignObject')
|
|
6911
6914
|
.attr('x', this.calculateTooltipX(d, xScale, width))
|
|
@@ -6944,12 +6947,12 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6944
6947
|
.style('fill', (d) => this.getBarColor(d, metaData));
|
|
6945
6948
|
svg.selectAll('.lib-verticalstack-title-ontop').remove();
|
|
6946
6949
|
}
|
|
6947
|
-
renderAxisLabels(svg, svgYAxisLeft,
|
|
6950
|
+
renderAxisLabels(svg, svgYAxisLeft, metaData, dimensions, margin) {
|
|
6948
6951
|
if (metaData.yLabel) {
|
|
6949
6952
|
this.addYAxisLabel(svgYAxisLeft, metaData.yLabel, dimensions.height, margin);
|
|
6950
6953
|
}
|
|
6951
6954
|
if (metaData.xLabel) {
|
|
6952
|
-
this.addXAxisLabel(
|
|
6955
|
+
this.addXAxisLabel(svg, metaData.xLabel, dimensions.width, dimensions.height, margin);
|
|
6953
6956
|
}
|
|
6954
6957
|
}
|
|
6955
6958
|
addYAxisLabel(svgYAxisLeft, label, height, margin) {
|
|
@@ -6970,18 +6973,21 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6970
6973
|
.text(isAcronym ? label.toUpperCase() : label.toLowerCase())
|
|
6971
6974
|
.style('text-transform', isAcronym ? 'none' : 'capitalize');
|
|
6972
6975
|
}
|
|
6973
|
-
addXAxisLabel(
|
|
6976
|
+
addXAxisLabel(svg, label, width, height, margin) {
|
|
6977
|
+
const isria = this.customChartConfiguration?.isRia;
|
|
6974
6978
|
const isAcronym = this.isAcronymLabel(label);
|
|
6975
|
-
|
|
6976
|
-
.
|
|
6977
|
-
.
|
|
6978
|
-
|
|
6979
|
-
.
|
|
6980
|
-
.
|
|
6981
|
-
.
|
|
6982
|
-
.
|
|
6983
|
-
.style('text-
|
|
6984
|
-
.
|
|
6979
|
+
const xPosition = isria
|
|
6980
|
+
? height + margin.top + margin.bottom
|
|
6981
|
+
: height + margin.top + margin.bottom + 10;
|
|
6982
|
+
svg
|
|
6983
|
+
.append('text')
|
|
6984
|
+
.attr('class', this.getXAxisLabelClass())
|
|
6985
|
+
.attr('style', this.chartConfiguration.xAxisCustomlabelStyles)
|
|
6986
|
+
.attr('transform', `translate(${width / 2},${xPosition})`)
|
|
6987
|
+
.style('text-anchor', 'middle')
|
|
6988
|
+
.style('fill', 'var(--chart-text-color)')
|
|
6989
|
+
.text(isAcronym ? label.toUpperCase() : label.toLowerCase())
|
|
6990
|
+
.style('text-transform', isAcronym ? 'none' : 'capitalize');
|
|
6985
6991
|
}
|
|
6986
6992
|
isAcronymLabel(label) {
|
|
6987
6993
|
const cleanLabel = label.replace(/[^A-Za-z]/g, '');
|
|
@@ -7008,28 +7014,6 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7008
7014
|
}
|
|
7009
7015
|
return `${baseClass} lib-axis-waterfall-label`;
|
|
7010
7016
|
}
|
|
7011
|
-
renderGridsFromLeftAxis(svgYAxisLeft, scales, dimensions) {
|
|
7012
|
-
if (this.chartConfiguration.yAxisGrid) {
|
|
7013
|
-
const gridWidth = dimensions.containerWidth - 80;
|
|
7014
|
-
svgYAxisLeft
|
|
7015
|
-
.append('g')
|
|
7016
|
-
.attr('class', 'grid horizontal-grid-from-left')
|
|
7017
|
-
.attr('transform', 'translate(0,0)')
|
|
7018
|
-
.call(d3
|
|
7019
|
-
.axisLeft(scales.yScale)
|
|
7020
|
-
.ticks(this.chartConfiguration.numberOfYTicks)
|
|
7021
|
-
.tickSize(-gridWidth) // Negative to extend right
|
|
7022
|
-
.tickFormat(''))
|
|
7023
|
-
.style('color', 'var(--chart-grid-color)')
|
|
7024
|
-
.style('opacity', '1')
|
|
7025
|
-
.call((g) => {
|
|
7026
|
-
g.select('.domain').remove();
|
|
7027
|
-
g.selectAll('.tick line')
|
|
7028
|
-
.style('stroke', 'var(--chart-grid-color)')
|
|
7029
|
-
.style('stroke-width', '1px');
|
|
7030
|
-
});
|
|
7031
|
-
}
|
|
7032
|
-
}
|
|
7033
7017
|
applyConfigurationFlags() {
|
|
7034
7018
|
if (this.chartConfiguration.isHeaderVisible !== undefined) {
|
|
7035
7019
|
this.isHeaderVisible = this.chartConfiguration.isHeaderVisible;
|
|
@@ -7042,10 +7026,8 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7042
7026
|
}
|
|
7043
7027
|
}
|
|
7044
7028
|
initializeStackedChart() {
|
|
7045
|
-
|
|
7046
|
-
this.
|
|
7047
|
-
this.chartConfiguration.numberOfYTicks = 5;
|
|
7048
|
-
this.chartConfiguration.svgHeight = 70;
|
|
7029
|
+
const device = this.getDeviceConfig();
|
|
7030
|
+
this.configureResponsiveSettings(device);
|
|
7049
7031
|
this.mergeConfigurations();
|
|
7050
7032
|
this.applyConfigurationFlags();
|
|
7051
7033
|
const data = this.chartData.data;
|
|
@@ -7056,19 +7038,17 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7056
7038
|
const chartContainer = d3.select(this.containerElt.nativeElement);
|
|
7057
7039
|
const verticalstackedcontainer = d3.select(this.verticalstackedcontainerElt.nativeElement);
|
|
7058
7040
|
const margin = this.chartConfiguration.margin;
|
|
7059
|
-
const dimensions = this.calculateDimensions(chartContainer, verticalstackedcontainer, margin, data.length);
|
|
7060
|
-
const
|
|
7061
|
-
const { svg, svgYAxisLeft, svgYAxisRight, bottomLabelContainer } = this.createSvgContainers(chartContainer, dimensions, margin, hasXLabel);
|
|
7041
|
+
const dimensions = this.calculateDimensions(chartContainer, verticalstackedcontainer, margin, device, data.length);
|
|
7042
|
+
const { svg, svgYAxisLeft, svgYAxisRight } = this.createSvgContainers(chartContainer, dimensions, margin);
|
|
7062
7043
|
const stack = d3.stack().keys(keyList).offset(d3.stackOffsetNone);
|
|
7063
7044
|
const layers = stack(data);
|
|
7064
7045
|
data.sort((a, b) => b.total - a.total);
|
|
7065
|
-
const scales = this.createScales(data, layers, lineData, dimensions);
|
|
7046
|
+
const scales = this.createScales(data, layers, lineData, dimensions, device);
|
|
7066
7047
|
const axes = this.createAxes(scales);
|
|
7067
|
-
this.renderGridsFromLeftAxis(svgYAxisLeft, scales, dimensions);
|
|
7068
7048
|
this.renderGrids(svg, scales, dimensions);
|
|
7069
|
-
const rect = this.renderBars(svg, layers, scales, metaData, dimensions);
|
|
7070
|
-
this.renderAxes(svg, svgYAxisLeft, svgYAxisRight, axes, scales, dimensions, data);
|
|
7071
|
-
this.renderAxisLabels(svg, svgYAxisLeft,
|
|
7049
|
+
const rect = this.renderBars(svg, layers, scales, metaData, dimensions, device);
|
|
7050
|
+
this.renderAxes(svg, svgYAxisLeft, svgYAxisRight, axes, scales, dimensions, device, data);
|
|
7051
|
+
this.renderAxisLabels(svg, svgYAxisLeft, metaData, dimensions, margin);
|
|
7072
7052
|
this.renderTargetLine(svg, svgYAxisRight, scales, dimensions, metaData);
|
|
7073
7053
|
this.renderDataLabels(rect, scales, metaData, dimensions);
|
|
7074
7054
|
this.renderLineChart(svg, lineData, scales, colors, metaData);
|
|
@@ -7077,13 +7057,25 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7077
7057
|
if (this.chartConfiguration.isXgridBetweenLabels) {
|
|
7078
7058
|
svg
|
|
7079
7059
|
.append('g')
|
|
7080
|
-
.attr('class', 'grid
|
|
7060
|
+
.attr('class', 'grid')
|
|
7081
7061
|
.attr('transform', `translate(${scales.xScale.bandwidth() / 2},${dimensions.height})`)
|
|
7082
7062
|
.call(d3.axisBottom(scales.xScale).tickSize(-dimensions.height).tickFormat(''))
|
|
7083
7063
|
.style('stroke-dasharray', '5 5')
|
|
7084
7064
|
.style('color', '#999999')
|
|
7085
7065
|
.call((g) => g.select('.domain').remove());
|
|
7086
7066
|
}
|
|
7067
|
+
if (this.chartConfiguration.yAxisGrid) {
|
|
7068
|
+
svg
|
|
7069
|
+
.append('g')
|
|
7070
|
+
.attr('class', 'grid')
|
|
7071
|
+
.call(d3
|
|
7072
|
+
.axisLeft(scales.yScale)
|
|
7073
|
+
.ticks(this.chartConfiguration.numberOfYTicks)
|
|
7074
|
+
.tickSize(-dimensions.width)
|
|
7075
|
+
.tickFormat(''))
|
|
7076
|
+
.style('color', 'var(--chart-grid-color)')
|
|
7077
|
+
.style('opacity', '1');
|
|
7078
|
+
}
|
|
7087
7079
|
if (this.chartConfiguration.xAxisGrid) {
|
|
7088
7080
|
for (let j = 0; j < this.chartConfiguration.xAxisGrid.length; j++) {
|
|
7089
7081
|
svg
|
|
@@ -7096,7 +7088,7 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7096
7088
|
}
|
|
7097
7089
|
}
|
|
7098
7090
|
}
|
|
7099
|
-
renderAxes(svg, svgYAxisLeft, svgYAxisRight, axes, scales, dimensions, data) {
|
|
7091
|
+
renderAxes(svg, svgYAxisLeft, svgYAxisRight, axes, scales, dimensions, device, data) {
|
|
7100
7092
|
if (this.chartConfiguration.showXaxisTop) {
|
|
7101
7093
|
svg
|
|
7102
7094
|
.append('g')
|
|
@@ -7106,7 +7098,7 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7106
7098
|
svg.selectAll('.x-axis > g > text').attr('class', 'lib-display-hidden');
|
|
7107
7099
|
}
|
|
7108
7100
|
if (!this.chartConfiguration.isMultiChartGridLine) {
|
|
7109
|
-
this.renderStandardAxes(svg, axes, scales, dimensions, data);
|
|
7101
|
+
this.renderStandardAxes(svg, axes, scales, dimensions, device, data);
|
|
7110
7102
|
}
|
|
7111
7103
|
else if (this.chartConfiguration.isDrilldownChart) {
|
|
7112
7104
|
this.renderDrilldownAxes(svg, svgYAxisLeft, svgYAxisRight, axes, scales, dimensions);
|
|
@@ -7117,35 +7109,24 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7117
7109
|
this.applyAxisStyling(svg, svgYAxisLeft, svgYAxisRight);
|
|
7118
7110
|
this.applyAxisConfigurations(svg, scales, dimensions, data);
|
|
7119
7111
|
}
|
|
7120
|
-
renderStandardAxes(svg, axes, scales, dimensions, data) {
|
|
7121
|
-
|
|
7122
|
-
|
|
7123
|
-
|
|
7124
|
-
|
|
7125
|
-
|
|
7126
|
-
|
|
7127
|
-
|
|
7128
|
-
|
|
7129
|
-
|
|
7130
|
-
|
|
7131
|
-
|
|
7132
|
-
|
|
7133
|
-
|
|
7134
|
-
|
|
7135
|
-
|
|
7136
|
-
|
|
7137
|
-
|
|
7138
|
-
if (isMobileOrTablet && text.length > 12) {
|
|
7139
|
-
textElement.text(text.substring(0, 10) + '...');
|
|
7140
|
-
}
|
|
7141
|
-
});
|
|
7142
|
-
// Ensure X-axis line starts exactly at x=0
|
|
7143
|
-
xAxisGroup
|
|
7144
|
-
.select('.domain')
|
|
7145
|
-
.style('stroke', 'var(--chart-axis-color)')
|
|
7146
|
-
.style('stroke-width', '1px')
|
|
7147
|
-
.attr('d', `M0,0.5H${dimensions.requiredSvgWidth}`);
|
|
7148
|
-
// Y-axis
|
|
7112
|
+
renderStandardAxes(svg, axes, scales, dimensions, device, data) {
|
|
7113
|
+
if (device.isMobile) {
|
|
7114
|
+
this.renderMobileXAxis(svg, data, dimensions);
|
|
7115
|
+
}
|
|
7116
|
+
else {
|
|
7117
|
+
svg
|
|
7118
|
+
.append('g')
|
|
7119
|
+
.attr('transform', `translate(0,${dimensions.height})`)
|
|
7120
|
+
.attr('class', 'lib-stacked-x-axis-text')
|
|
7121
|
+
.call(axes.xAxis)
|
|
7122
|
+
.selectAll('text')
|
|
7123
|
+
.style('fill', 'var(--chart-text-color)')
|
|
7124
|
+
.style('font-size', '12px')
|
|
7125
|
+
.attr('text-anchor', 'middle')
|
|
7126
|
+
.attr('dx', '0')
|
|
7127
|
+
.attr('dy', '0.71em')
|
|
7128
|
+
.attr('transform', null);
|
|
7129
|
+
}
|
|
7149
7130
|
svg
|
|
7150
7131
|
.append('g')
|
|
7151
7132
|
.attr('class', 'lib-stacked-y-axis-text')
|
|
@@ -7154,6 +7135,27 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7154
7135
|
.selectAll('text')
|
|
7155
7136
|
.style('fill', 'var(--chart-text-color)');
|
|
7156
7137
|
}
|
|
7138
|
+
renderMobileXAxis(svg, data, dimensions) {
|
|
7139
|
+
svg.selectAll('.custom-x-label').remove();
|
|
7140
|
+
const maxLength = Math.max(...data.map(d => d.name.length));
|
|
7141
|
+
const fontSize = maxLength > 10 ? '8px' : '10px';
|
|
7142
|
+
data.forEach((d, i) => {
|
|
7143
|
+
const xVal = this.CONSTANTS.LEFT_RIGHT_SPACES +
|
|
7144
|
+
i * (dimensions.barWidth + dimensions.barPadding) +
|
|
7145
|
+
dimensions.barWidth / 2;
|
|
7146
|
+
svg
|
|
7147
|
+
.append('text')
|
|
7148
|
+
.attr('class', 'custom-x-label')
|
|
7149
|
+
.attr('x', 0)
|
|
7150
|
+
.attr('y', dimensions.height + 18)
|
|
7151
|
+
.attr('text-anchor', 'middle')
|
|
7152
|
+
.attr('transform', `translate(${xVal + 20},0)`)
|
|
7153
|
+
.style('font-size', fontSize)
|
|
7154
|
+
.style('fill', 'var(--chart-text-color)')
|
|
7155
|
+
.style('writing-mode', 'sideways-lr')
|
|
7156
|
+
.text(d.name.length > 6 ? d.name.substring(0, 4) + '...' : d.name);
|
|
7157
|
+
});
|
|
7158
|
+
}
|
|
7157
7159
|
renderDrilldownAxes(svg, svgYAxisLeft, svgYAxisRight, axes, scales, dimensions) {
|
|
7158
7160
|
svg
|
|
7159
7161
|
.append('g')
|
|
@@ -7235,6 +7237,7 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7235
7237
|
}
|
|
7236
7238
|
}
|
|
7237
7239
|
renderCustomXAxis(svg, scales, dimensions, data) {
|
|
7240
|
+
const device = this.getDeviceConfig();
|
|
7238
7241
|
svg
|
|
7239
7242
|
.append('g')
|
|
7240
7243
|
.attr('class', 'x1 axis1')
|
|
@@ -7242,12 +7245,12 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7242
7245
|
.style('color', '#000')
|
|
7243
7246
|
.call(d3.axisBottom(scales.xScale).tickSize(0))
|
|
7244
7247
|
.call((g) => g.select('.domain').attr('fill', 'none'));
|
|
7245
|
-
this.styleCustomXAxisTicks(svg, data);
|
|
7248
|
+
this.styleCustomXAxisTicks(svg, data, device);
|
|
7246
7249
|
if (this.chartConfiguration.xLabelsOnSameLine) {
|
|
7247
|
-
this.applyXLabelsOnSameLine(svg);
|
|
7250
|
+
this.applyXLabelsOnSameLine(svg, device);
|
|
7248
7251
|
}
|
|
7249
7252
|
}
|
|
7250
|
-
styleCustomXAxisTicks(svg, data) {
|
|
7253
|
+
styleCustomXAxisTicks(svg, data, device) {
|
|
7251
7254
|
let alternateText = false;
|
|
7252
7255
|
svg.selectAll('.x1.axis1 .tick line').attr('y2', () => {
|
|
7253
7256
|
if (this.chartConfiguration.hideXaxisTick)
|
|
@@ -7279,17 +7282,28 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7279
7282
|
return this.CONSTANTS.SHORT_TICK_LENGTH_BG;
|
|
7280
7283
|
});
|
|
7281
7284
|
}
|
|
7282
|
-
applyXLabelsOnSameLine(svg) {
|
|
7285
|
+
applyXLabelsOnSameLine(svg, device) {
|
|
7283
7286
|
svg
|
|
7284
7287
|
.selectAll('g.x1.axis1 g.tick text')
|
|
7285
7288
|
.attr('class', 'lib-xaxis-labels-texts-drilldown')
|
|
7286
7289
|
.attr('y', this.CONSTANTS.SHORT_TICK_LENGTH_BG)
|
|
7287
7290
|
.text((d) => {
|
|
7291
|
+
if (device.isMobile) {
|
|
7292
|
+
return d.split(' ')[0].substring(0, 3);
|
|
7293
|
+
}
|
|
7288
7294
|
const trimmed = d.trim();
|
|
7289
7295
|
const spaceIndex = trimmed.indexOf(' ');
|
|
7290
7296
|
return spaceIndex > -1
|
|
7291
7297
|
? trimmed.substring(0, spaceIndex).toLowerCase()
|
|
7292
7298
|
: trimmed.toLowerCase();
|
|
7299
|
+
})
|
|
7300
|
+
.attr('transform', function (d, i) {
|
|
7301
|
+
if (device.isMobile) {
|
|
7302
|
+
const parent = this.parentNode?.parentNode;
|
|
7303
|
+
const totalBars = parent ? d3.select(parent).selectAll('g.tick').size() : 0;
|
|
7304
|
+
return totalBars === 2 ? 'translate(0,0)' : `translate(${i * 30},0)`;
|
|
7305
|
+
}
|
|
7306
|
+
return null;
|
|
7293
7307
|
});
|
|
7294
7308
|
svg
|
|
7295
7309
|
.selectAll('g.x1.axis1 g.tick')
|
|
@@ -7298,11 +7312,16 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7298
7312
|
.attr('y', this.CONSTANTS.LONG_TICK_LENGTH_BG)
|
|
7299
7313
|
.attr('fill', 'currentColor')
|
|
7300
7314
|
.text((d) => {
|
|
7315
|
+
if (device.isMobile)
|
|
7316
|
+
return '';
|
|
7301
7317
|
const trimmed = d.trim();
|
|
7302
7318
|
const spaceIndex = trimmed.indexOf(' ');
|
|
7303
7319
|
return spaceIndex > -1
|
|
7304
7320
|
? trimmed.substring(spaceIndex).toLowerCase()
|
|
7305
7321
|
: '';
|
|
7322
|
+
})
|
|
7323
|
+
.attr('transform', (d, i) => {
|
|
7324
|
+
return device.isMobile && i === 0 ? 'translate(20,0)' : null;
|
|
7306
7325
|
});
|
|
7307
7326
|
}
|
|
7308
7327
|
renderDataLabels(rect, scales, metaData, dimensions) {
|
|
@@ -7493,11 +7512,11 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7493
7512
|
this.isZoomOutSelected(isZoomOut);
|
|
7494
7513
|
}
|
|
7495
7514
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: HorizontalBarsWithScrollZoomComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7496
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: HorizontalBarsWithScrollZoomComponent, selector: "lib-horizontal-bars-with-scroll-zoom", inputs: { chartData: "chartData", customChartConfiguration: "customChartConfiguration" }, outputs: { clickEvent: "clickEvent", headerMenuclickEvent: "headerMenuclickEvent" }, viewQueries: [{ propertyName: "containerElt", first: true, predicate: ["verticalstackedchartcontainer"], descendants: true, static: true }, { propertyName: "verticalstackedcontainerElt", first: true, predicate: ["verticalstackedcontainer"], descendants: true, static: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<meta http-equiv=\"CACHE-CONTROL\" content=\"NO-CACHE\" />\r\n<meta http-equiv=\"EXPIRES\" content=\"Sat, 01 Jun 2004 11:12:01 GMT\" />\r\n<div\r\n #verticalstackedcontainer\r\n class=\"lib-chart-wrapper\"\r\n [ngClass]=\"{ 'lib-no-background': isTransparentBackground }\"\r\n style=\"background-color: var(--card-bg);\"\r\n\r\n (resized)=\"onResized($event)\"\r\n>\r\n <div class=\"header-alt\" *ngIf=\"!isHeaderVisible\">\r\n <lib-chart-header-v2\r\n [chartData]=\"chartData\"\r\n [chartConfiguration]=\"chartConfiguration\"\r\n (clickEvent)=\"handleClick($event)\"\r\n ></lib-chart-header-v2>\r\n\r\n <lib-chart-header-v3\r\n [chartData]=\"chartData\"\r\n [chartConfiguration]=\"chartConfiguration\"\r\n (compareByFilterSelection)=\"handleCompareByFilterSelection($event)\"\r\n (zoomInZoomOutClick)=\"handleZoominZoomoutClick($event)\"\r\n ></lib-chart-header-v3>\r\n </div>\r\n <div\r\n [style.height]=\"chartConfiguration.svgHeight\"\r\n id=\"verticalstackedchartcontainer\"\r\n #verticalstackedchartcontainer\r\n class=\"lib-chart-svg\"\r\n ></div>\r\n</div>\r\n", styles: [".lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;letter-spacing:0px;color:#000;opacity:1;font-size:12px}.lib-axis-group-label{font-size:12px;font-weight:600;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;color:#000;opacity:1}.dots{font-size:10px}.inline__display{display:flex;justify-content:space-around;padding-top:2%}.verticalbar__text{font-style:normal;font-variant:normal;font-weight:400;font-size:13px;line-height:20px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;opacity:1}.lib-line-label-item{display:inline-block!important;font-size:.85em;margin-right:10px;font-weight:600}.lib-line-label-wrapper-vertical{display:flex;justify-content:center}.target-display{font-size:11px;line-height:13px;font-weight:700;text-transform:uppercase;float:right}.title{background-color:#d9d9d9;height:40px;display:flex;flex-direction:column;justify-content:center;align-items:center;border-radius:3px;line-height:1;padding:4px 8px;box-sizing:border-box}.title-top-text{color:var(--font-color)!important;font-size:12px;font-weight:600}.title-bar-name{color:var(--font-color)!important;font-size:14px;font-weight:700;text-transform:capitalize}.title-bottom-text{color:var(--font-color)!important;font-size:11px}.zoomIcons-holder{display:flex;align-items:center;margin-right:15px}.zoomIcons{border:.5px solid #b6b6b6;cursor:pointer;display:flex;justify-content:center;align-items:center;width:30px;height:30px;color:var(--color)!important}.zoom-active{background-color:#2d5ca0;opacity:1}.zoom-inactive{background-color:#d9d9d9;opacity:.5}.bottom__text{position:absolute!important;bottom:0!important;display:flex!important;justify-content:center!important;align-items:center!important;width:100%!important}.box__heightwidth{opacity:1;height:10px;width:10px;border:none!important;border-radius:50%}.label__text{margin-right:10px;display:flex;justify-content:center;align-items:center;font-style:normal;font-variant:normal;font-weight:400;font-size:10px;line-height:13px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;letter-spacing:.2px;color:#707070!important}.lib-verticalstack-labels-ontop-weklycharts{font-style:normal;font-variant:normal;font-weight:700;font-size:10px;line-height:11px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.05px;text-anchor:middle;fill:#000}.lib-verticalstack-title-ontop{font-style:normal;font-variant:normal;font-size:14px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.05px;text-anchor:middle;fill:#000}.marginLeft-20{margin-left:20px}.flex-inline{display:flex;justify-content:center;align-items:center;font-size:14px}.lib-xaxis-labels-texts-drilldown,.lib-xaxis-labels-texts-drilldown-alt,.lib-xaxis-labels-texts-weeklycharts{font-size:12px}.lib-display-hidden{display:none!important}.chart-wrapper-main{position:relative;width:100%;box-sizing:border-box}.left-axis-container,.right-axis-container{pointer-events:none;overflow:hidden;-webkit-user-select:none;user-select:none}.scrollable-chart-container{-webkit-overflow-scrolling:touch;scrollbar-width:thin;scrollbar-color:#888 #f1f1f1}.scrollable-chart-container::-webkit-scrollbar{height:8px}.scrollable-chart-container::-webkit-scrollbar-track{background:#f1f1f1;border-radius:4px}.scrollable-chart-container::-webkit-scrollbar-thumb{background:#888;border-radius:4px}.scrollable-chart-container::-webkit-scrollbar-thumb:hover{background:#555}.inner-chart-container{position:relative}.grid line{stroke-width:1;shape-rendering:crispEdges}.horizontal-grid line{stroke-opacity:.7}.vertical-grid line{stroke-opacity:.7}.lib-y-axis-hidden{opacity:0!important;pointer-events:none}.lib-stacked-x-axis-text .domain{stroke:var(--chart-axis-color);stroke-width:1px}.lib-stacked-x-axis-text text{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;font-size:12px;fill:var(--chart-text-color)}.lib-stacked-y-axis-text .domain{stroke:var(--chart-axis-color);stroke-width:1px}.lib-stacked-y-axis-text text{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;font-size:12px;fill:var(--chart-text-color)}@media (max-width: 1024px){.scrollable-chart-container::-webkit-scrollbar{height:6px}.lib-stacked-x-axis-text text{font-size:10px}}@media (max-width: 768px){.scrollable-chart-container::-webkit-scrollbar{height:4px}}.left-axis-container svg{pointer-events:none;overflow:visible!important}.horizontal-grid-from-left line{pointer-events:none}\n", ".lib-chart-wrapper{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;background:#fff 0% 0% no-repeat padding-box;position:relative}.lib-chart-wrapper-wo-shadow{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background){background-color:#2e3640}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background) .chart-title{color:#fff}.lib-chart-svg{width:100%}.lib-chart-header{text-align:center;background-color:#052340;color:#fff;width:100%;height:17%;word-spacing:.5px;line-height:1.8;font-weight:700;padding-top:2%;letter-spacing:0;font-size:1.2em}.lib-donut-chart-footer{width:100%;text-align:right}.lib-donut-label-text{font-size:.9em;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;letter-spacing:0px;color:#000;opacity:1}.lib-donut-label-icon{display:inline-block;width:10px;height:10px;margin-right:20px;border-radius:3px}.lib-donut-label-item{font-weight:400;font-size:.85em;color:#2f2f2f}.lib-donut-justified-label-wrapper{width:100%;display:inline-block;text-align:center;list-style-type:none}.lib-donut-justified-label-item{font-weight:400;font-size:.85em;color:#2f2f2f;display:inline-block;text-align:left;padding:0 10px}.lib-donut-justified-label-icon{display:inline-block;width:10px;height:10px;margin-right:5px;border-radius:3px}.lib-no-background{background:none!important}.lib-display-hidden{display:none}.lib-ylabel-weeklyCharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:12px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.07px;text-transform:capitalize;color:#000}.lib-data-labels-weeklycharts{font-style:normal;font-variant:normal;font-weight:400;font-size:12px;line-height:14px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.06px;color:#000}.lib-data-labels-angled-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:9.5px;line-height:11px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:.4px;text-anchor:start}.lib-xaxis-labels-texts-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:11px;letter-spacing:-.05px;fill:#000}.lib-xaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:-1px;color:#000;opacity:1;text-transform:capitalize}.lib-white-space-nowrap{white-space:nowrap}.lib-xaxis-labels-texts-drilldown-alt{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:10px;letter-spacing:0px;color:#000;opacity:1;text-transform:capitalize}.lib-yaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:0px;color:#000!important;opacity:1}.lib-ylabel-drilldowncharts,.lib-xlabel-drilldowncharts{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:16px;letter-spacing:-.1px;color:#000!important;opacity:1}.lib-donut-justified-label-icon-drilldown{display:inline-block;width:14px;height:14px;margin-right:10px;border-radius:50%}.marginright-2{margin-right:2%}.margintop-5{margin-top:5%}.width-100{width:100%}.float-right{float:right}.marginBottom-10{margin-bottom:10px}.header-alt{align-items:center;margin-bottom:10px}input::placeholder{font-size:20px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;color:#000;opacity:1}.padding-5{padding:5px}.hidden{visibility:hidden}.font-weight-bold{font-weight:900}.textalign-center{text-align:center}.cursor-pointer{cursor:pointer}.cursor-default{cursor:default}.font-weight-600{font-weight:600}.marginRight-15{margin-right:15px}.marginRight-20{margin-right:20px}.switch{position:relative;display:inline-block;width:46px;height:24px;margin-left:5px;margin-right:5px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;inset:0;background-color:#2d5ca0;-webkit-transition:.4s;transition:.4s}.slider:before{position:absolute;content:\"\";height:18px;width:18px;right:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider.round{border-radius:18px}.slider.round:before{border-radius:50%}.slider1{position:absolute;cursor:pointer;inset:0;background-color:#015ba2cf;-webkit-transition:.4s;transition:.4s}.slider1:before{position:absolute;content:\"\";height:18px;width:18px;left:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider1.round1{border-radius:18px}.slider1.round1:before{border-radius:50%}.lib-display-flex{display:flex}.lib-align-items-center{align-items:center}.lib-flex-direction-column{flex-direction:column}.lib-justify-content-space-between{justify-content:space-between}.lib-justify-content-space-around{justify-content:space-around}.lib-justify-content-center{justify-content:center}.lib-justify-content-start{justify-content:start}.lib-justify-content-end{justify-content:end}.lib-ml-20{margin-left:20px}.lib-position-absolute{position:absolute}.lib-z-index-9{z-index:9}.marginright-3{margin-right:3px}@media (min-height: 900px){.lib-chart-wrapper{border-radius:8px}.header-font-size-1{font-size:18px!important}.font-size-1{font-size:14px!important}.font-size-2{font-size:16px!important}.font-size-3{font-size:14px!important}.font-size-4{font-size:22px!important}.font-size-5{font-size:24px!important}}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.ResizedDirective, selector: "[resized]", outputs: ["resized"] }, { kind: "component", type: ChartHeaderV2Component, selector: "lib-chart-header-v2", inputs: ["chartData", "chartConfiguration"], outputs: ["clickEvent", "zoomInZoomOutClick"] }, { kind: "component", type: ChartHeaderV3Component, selector: "lib-chart-header-v3", inputs: ["chartData", "chartConfiguration"], outputs: ["compareByFilterSelection", "zoomInZoomOutClick"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
7515
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: HorizontalBarsWithScrollZoomComponent, selector: "lib-horizontal-bars-with-scroll-zoom", inputs: { chartData: "chartData", customChartConfiguration: "customChartConfiguration" }, outputs: { clickEvent: "clickEvent", headerMenuclickEvent: "headerMenuclickEvent" }, viewQueries: [{ propertyName: "containerElt", first: true, predicate: ["verticalstackedchartcontainer"], descendants: true, static: true }, { propertyName: "verticalstackedcontainerElt", first: true, predicate: ["verticalstackedcontainer"], descendants: true, static: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<meta http-equiv=\"CACHE-CONTROL\" content=\"NO-CACHE\" />\r\n<meta http-equiv=\"EXPIRES\" content=\"Sat, 01 Jun 2004 11:12:01 GMT\" />\r\n<div\r\n #verticalstackedcontainer\r\n class=\"lib-chart-wrapper\"\r\n [ngClass]=\"{ 'lib-no-background': isTransparentBackground }\"\r\n style=\"background-color: var(--card-bg);\"\r\n\r\n (resized)=\"onResized($event)\"\r\n>\r\n <div class=\"header-alt\" *ngIf=\"!isHeaderVisible\">\r\n <lib-chart-header-v2\r\n [chartData]=\"chartData\"\r\n [chartConfiguration]=\"chartConfiguration\"\r\n (clickEvent)=\"handleClick($event)\"\r\n ></lib-chart-header-v2>\r\n\r\n <lib-chart-header-v3\r\n [chartData]=\"chartData\"\r\n [chartConfiguration]=\"chartConfiguration\"\r\n (compareByFilterSelection)=\"handleCompareByFilterSelection($event)\"\r\n (zoomInZoomOutClick)=\"handleZoominZoomoutClick($event)\"\r\n ></lib-chart-header-v3>\r\n </div>\r\n <div\r\n [style.height]=\"chartConfiguration.svgHeight\"\r\n id=\"verticalstackedchartcontainer\"\r\n #verticalstackedchartcontainer\r\n class=\"lib-chart-svg\"\r\n ></div>\r\n</div>\r\n", styles: [".lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;letter-spacing:0px;color:#000;opacity:1;font-size:12px}.lib-axis-group-label{font-size:12px;font-weight:600;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;color:#000;opacity:1}.dots{font-size:10px}.inline__display{display:flex;justify-content:space-around;padding-top:2%}.verticalbar__text{font-style:normal;font-variant:normal;font-weight:400;font-size:13px;line-height:20px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;opacity:1}.lib-line-label-item{display:inline-block!important;font-size:.85em;margin-right:10px;font-weight:600}.lib-line-label-wrapper-vertical{display:flex;justify-content:center}.target-display{font-size:11px;line-height:13px;font-weight:700;text-transform:uppercase;float:right}.title{background-color:#d9d9d9;height:40px;display:flex;flex-direction:column;justify-content:center;align-items:center;border-radius:3px;line-height:1;padding:4px 8px;box-sizing:border-box}.title-top-text{color:var(--font-color)!important;font-size:12px;font-weight:600}.title-bar-name{color:var(--font-color)!important;font-size:14px;font-weight:700;text-transform:capitalize}.title-bottom-text{color:var(--font-color)!important;font-size:11px}.zoomIcons-holder{display:flex;align-items:center;margin-right:15px}.zoomIcons{border:.5px solid #b6b6b6;cursor:pointer;display:flex;justify-content:center;align-items:center;width:30px;height:30px;color:var(--color)!important}.zoom-active{background-color:#2d5ca0;opacity:1}.zoom-inactive{background-color:#d9d9d9;opacity:.5}.bottom__text{position:absolute!important;bottom:0!important;display:flex!important;justify-content:center!important;align-items:center!important;width:100%!important}.box__heightwidth{opacity:1;height:10px;width:10px;border:none!important;border-radius:50%}.label__text{margin-right:10px;display:flex;justify-content:center;align-items:center;font-style:normal;font-variant:normal;font-weight:400;font-size:10px;line-height:13px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;letter-spacing:.2px;color:#707070!important}.lib-verticalstack-labels-ontop-weklycharts{font-style:normal;font-variant:normal;font-weight:700;font-size:10px;line-height:11px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.05px;text-anchor:middle;fill:#000}.lib-verticalstack-title-ontop{font-style:normal;font-variant:normal;font-size:14px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.05px;text-anchor:middle;fill:#000}.marginLeft-20{margin-left:20px}.flex-inline{display:flex;justify-content:center;align-items:center;font-size:14px}@media (max-width: 767px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:9px!important}.lib-axis-group-label{font-size:10px!important}.dots{font-size:8px!important}.lib-xaxis-labels-texts-drilldown{writing-mode:sideways-lr;font-size:9px!important}.target-display{font-size:9px;line-height:11px}.title-top-text{font-size:10px}.title-bar-name{font-size:12px}.zoomIcons{width:26px;height:26px}.lib-verticalstack-labels-ontop-weklycharts{font-size:9px}}@media (min-width: 768px) and (max-width: 1023px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:10px!important}.lib-axis-group-label{font-size:11px!important}.dots{font-size:9px!important}.target-display{font-size:10px;line-height:12px}.title-top-text{font-size:11px}.title-bar-name{font-size:13px}.zoomIcons{width:28px;height:28px}}@media (min-width: 1024px) and (max-width: 1365px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:11px!important}.lib-axis-group-label{font-size:12px!important}.dots{font-size:10px!important}}@media (min-width: 1366px) and (max-width: 1919px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:12px!important}.lib-axis-group-label{font-size:13px!important}.dots{font-size:11px!important}}@media (min-width: 1920px) and (max-width: 2559px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:14px!important}.lib-axis-group-label{font-size:14px!important}.dots{font-size:12px!important}.target-display{font-size:13px;line-height:15px}.title-top-text{font-size:14px}.title-bar-name{font-size:16px}}@media (min-width: 2560px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:16px!important}.lib-axis-group-label{font-size:15px!important}.dots{font-size:14px!important}.target-display{font-size:14px;line-height:16px}.title-top-text{font-size:15px}.title-bar-name{font-size:18px}.zoomIcons{width:34px;height:34px}}@media (orientation: portrait) and (max-width: 767px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:8px!important}.lib-xaxis-labels-texts-drilldown{font-size:8px!important}}@media (orientation: landscape) and (min-width: 768px) and (max-width: 1023px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:11px!important}}\n", ".lib-chart-wrapper{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;background:#fff 0% 0% no-repeat padding-box;position:relative}.lib-chart-wrapper-wo-shadow{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background){background-color:#2e3640}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background) .chart-title{color:#fff}.lib-chart-svg{width:100%}.lib-chart-header{text-align:center;background-color:#052340;color:#fff;width:100%;height:17%;word-spacing:.5px;line-height:1.8;font-weight:700;padding-top:2%;letter-spacing:0;font-size:1.2em}.lib-donut-chart-footer{width:100%;text-align:right}.lib-donut-label-text{font-size:.9em;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;letter-spacing:0px;color:#000;opacity:1}.lib-donut-label-icon{display:inline-block;width:10px;height:10px;margin-right:20px;border-radius:3px}.lib-donut-label-item{font-weight:400;font-size:.85em;color:#2f2f2f}.lib-donut-justified-label-wrapper{width:100%;display:inline-block;text-align:center;list-style-type:none}.lib-donut-justified-label-item{font-weight:400;font-size:.85em;color:#2f2f2f;display:inline-block;text-align:left;padding:0 10px}.lib-donut-justified-label-icon{display:inline-block;width:10px;height:10px;margin-right:5px;border-radius:3px}.lib-no-background{background:none!important}.lib-display-hidden{display:none}.lib-ylabel-weeklyCharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:12px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.07px;text-transform:capitalize;color:#000}.lib-data-labels-weeklycharts{font-style:normal;font-variant:normal;font-weight:400;font-size:12px;line-height:14px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.06px;color:#000}.lib-data-labels-angled-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:9.5px;line-height:11px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:.4px;text-anchor:start}.lib-xaxis-labels-texts-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:11px;letter-spacing:-.05px;fill:#000}.lib-xaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:-1px;color:#000;opacity:1;text-transform:capitalize}.lib-white-space-nowrap{white-space:nowrap}.lib-xaxis-labels-texts-drilldown-alt{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:10px;letter-spacing:0px;color:#000;opacity:1;text-transform:capitalize}.lib-yaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:0px;color:#000!important;opacity:1}.lib-ylabel-drilldowncharts,.lib-xlabel-drilldowncharts{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:16px;letter-spacing:-.1px;color:#000!important;opacity:1}.lib-donut-justified-label-icon-drilldown{display:inline-block;width:14px;height:14px;margin-right:10px;border-radius:50%}.marginright-2{margin-right:2%}.margintop-5{margin-top:5%}.width-100{width:100%}.float-right{float:right}.marginBottom-10{margin-bottom:10px}.header-alt{align-items:center;margin-bottom:10px}input::placeholder{font-size:20px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;color:#000;opacity:1}.padding-5{padding:5px}.hidden{visibility:hidden}.font-weight-bold{font-weight:900}.textalign-center{text-align:center}.cursor-pointer{cursor:pointer}.cursor-default{cursor:default}.font-weight-600{font-weight:600}.marginRight-15{margin-right:15px}.marginRight-20{margin-right:20px}.switch{position:relative;display:inline-block;width:46px;height:24px;margin-left:5px;margin-right:5px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;inset:0;background-color:#2d5ca0;-webkit-transition:.4s;transition:.4s}.slider:before{position:absolute;content:\"\";height:18px;width:18px;right:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider.round{border-radius:18px}.slider.round:before{border-radius:50%}.slider1{position:absolute;cursor:pointer;inset:0;background-color:#015ba2cf;-webkit-transition:.4s;transition:.4s}.slider1:before{position:absolute;content:\"\";height:18px;width:18px;left:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider1.round1{border-radius:18px}.slider1.round1:before{border-radius:50%}.lib-display-flex{display:flex}.lib-align-items-center{align-items:center}.lib-flex-direction-column{flex-direction:column}.lib-justify-content-space-between{justify-content:space-between}.lib-justify-content-space-around{justify-content:space-around}.lib-justify-content-center{justify-content:center}.lib-justify-content-start{justify-content:start}.lib-justify-content-end{justify-content:end}.lib-ml-20{margin-left:20px}.lib-position-absolute{position:absolute}.lib-z-index-9{z-index:9}.marginright-3{margin-right:3px}@media (min-height: 900px){.lib-chart-wrapper{border-radius:8px}.header-font-size-1{font-size:18px!important}.font-size-1{font-size:14px!important}.font-size-2{font-size:16px!important}.font-size-3{font-size:14px!important}.font-size-4{font-size:22px!important}.font-size-5{font-size:24px!important}}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.ResizedDirective, selector: "[resized]", outputs: ["resized"] }, { kind: "component", type: ChartHeaderV2Component, selector: "lib-chart-header-v2", inputs: ["chartData", "chartConfiguration"], outputs: ["clickEvent", "zoomInZoomOutClick"] }, { kind: "component", type: ChartHeaderV3Component, selector: "lib-chart-header-v3", inputs: ["chartData", "chartConfiguration"], outputs: ["compareByFilterSelection", "zoomInZoomOutClick"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
7497
7516
|
}
|
|
7498
7517
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: HorizontalBarsWithScrollZoomComponent, decorators: [{
|
|
7499
7518
|
type: Component,
|
|
7500
|
-
args: [{ selector: 'lib-horizontal-bars-with-scroll-zoom', encapsulation: ViewEncapsulation.None, template: "<meta http-equiv=\"CACHE-CONTROL\" content=\"NO-CACHE\" />\r\n<meta http-equiv=\"EXPIRES\" content=\"Sat, 01 Jun 2004 11:12:01 GMT\" />\r\n<div\r\n #verticalstackedcontainer\r\n class=\"lib-chart-wrapper\"\r\n [ngClass]=\"{ 'lib-no-background': isTransparentBackground }\"\r\n style=\"background-color: var(--card-bg);\"\r\n\r\n (resized)=\"onResized($event)\"\r\n>\r\n <div class=\"header-alt\" *ngIf=\"!isHeaderVisible\">\r\n <lib-chart-header-v2\r\n [chartData]=\"chartData\"\r\n [chartConfiguration]=\"chartConfiguration\"\r\n (clickEvent)=\"handleClick($event)\"\r\n ></lib-chart-header-v2>\r\n\r\n <lib-chart-header-v3\r\n [chartData]=\"chartData\"\r\n [chartConfiguration]=\"chartConfiguration\"\r\n (compareByFilterSelection)=\"handleCompareByFilterSelection($event)\"\r\n (zoomInZoomOutClick)=\"handleZoominZoomoutClick($event)\"\r\n ></lib-chart-header-v3>\r\n </div>\r\n <div\r\n [style.height]=\"chartConfiguration.svgHeight\"\r\n id=\"verticalstackedchartcontainer\"\r\n #verticalstackedchartcontainer\r\n class=\"lib-chart-svg\"\r\n ></div>\r\n</div>\r\n", styles: [".lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;letter-spacing:0px;color:#000;opacity:1;font-size:12px}.lib-axis-group-label{font-size:12px;font-weight:600;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;color:#000;opacity:1}.dots{font-size:10px}.inline__display{display:flex;justify-content:space-around;padding-top:2%}.verticalbar__text{font-style:normal;font-variant:normal;font-weight:400;font-size:13px;line-height:20px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;opacity:1}.lib-line-label-item{display:inline-block!important;font-size:.85em;margin-right:10px;font-weight:600}.lib-line-label-wrapper-vertical{display:flex;justify-content:center}.target-display{font-size:11px;line-height:13px;font-weight:700;text-transform:uppercase;float:right}.title{background-color:#d9d9d9;height:40px;display:flex;flex-direction:column;justify-content:center;align-items:center;border-radius:3px;line-height:1;padding:4px 8px;box-sizing:border-box}.title-top-text{color:var(--font-color)!important;font-size:12px;font-weight:600}.title-bar-name{color:var(--font-color)!important;font-size:14px;font-weight:700;text-transform:capitalize}.title-bottom-text{color:var(--font-color)!important;font-size:11px}.zoomIcons-holder{display:flex;align-items:center;margin-right:15px}.zoomIcons{border:.5px solid #b6b6b6;cursor:pointer;display:flex;justify-content:center;align-items:center;width:30px;height:30px;color:var(--color)!important}.zoom-active{background-color:#2d5ca0;opacity:1}.zoom-inactive{background-color:#d9d9d9;opacity:.5}.bottom__text{position:absolute!important;bottom:0!important;display:flex!important;justify-content:center!important;align-items:center!important;width:100%!important}.box__heightwidth{opacity:1;height:10px;width:10px;border:none!important;border-radius:50%}.label__text{margin-right:10px;display:flex;justify-content:center;align-items:center;font-style:normal;font-variant:normal;font-weight:400;font-size:10px;line-height:13px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;letter-spacing:.2px;color:#707070!important}.lib-verticalstack-labels-ontop-weklycharts{font-style:normal;font-variant:normal;font-weight:700;font-size:10px;line-height:11px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.05px;text-anchor:middle;fill:#000}.lib-verticalstack-title-ontop{font-style:normal;font-variant:normal;font-size:14px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.05px;text-anchor:middle;fill:#000}.marginLeft-20{margin-left:20px}.flex-inline{display:flex;justify-content:center;align-items:center;font-size:14px}.lib-xaxis-labels-texts-drilldown,.lib-xaxis-labels-texts-drilldown-alt,.lib-xaxis-labels-texts-weeklycharts{font-size:12px}.lib-display-hidden{display:none!important}.chart-wrapper-main{position:relative;width:100%;box-sizing:border-box}.left-axis-container,.right-axis-container{pointer-events:none;overflow:hidden;-webkit-user-select:none;user-select:none}.scrollable-chart-container{-webkit-overflow-scrolling:touch;scrollbar-width:thin;scrollbar-color:#888 #f1f1f1}.scrollable-chart-container::-webkit-scrollbar{height:8px}.scrollable-chart-container::-webkit-scrollbar-track{background:#f1f1f1;border-radius:4px}.scrollable-chart-container::-webkit-scrollbar-thumb{background:#888;border-radius:4px}.scrollable-chart-container::-webkit-scrollbar-thumb:hover{background:#555}.inner-chart-container{position:relative}.grid line{stroke-width:1;shape-rendering:crispEdges}.horizontal-grid line{stroke-opacity:.7}.vertical-grid line{stroke-opacity:.7}.lib-y-axis-hidden{opacity:0!important;pointer-events:none}.lib-stacked-x-axis-text .domain{stroke:var(--chart-axis-color);stroke-width:1px}.lib-stacked-x-axis-text text{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;font-size:12px;fill:var(--chart-text-color)}.lib-stacked-y-axis-text .domain{stroke:var(--chart-axis-color);stroke-width:1px}.lib-stacked-y-axis-text text{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;font-size:12px;fill:var(--chart-text-color)}@media (max-width: 1024px){.scrollable-chart-container::-webkit-scrollbar{height:6px}.lib-stacked-x-axis-text text{font-size:10px}}@media (max-width: 768px){.scrollable-chart-container::-webkit-scrollbar{height:4px}}.left-axis-container svg{pointer-events:none;overflow:visible!important}.horizontal-grid-from-left line{pointer-events:none}\n", ".lib-chart-wrapper{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;background:#fff 0% 0% no-repeat padding-box;position:relative}.lib-chart-wrapper-wo-shadow{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background){background-color:#2e3640}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background) .chart-title{color:#fff}.lib-chart-svg{width:100%}.lib-chart-header{text-align:center;background-color:#052340;color:#fff;width:100%;height:17%;word-spacing:.5px;line-height:1.8;font-weight:700;padding-top:2%;letter-spacing:0;font-size:1.2em}.lib-donut-chart-footer{width:100%;text-align:right}.lib-donut-label-text{font-size:.9em;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;letter-spacing:0px;color:#000;opacity:1}.lib-donut-label-icon{display:inline-block;width:10px;height:10px;margin-right:20px;border-radius:3px}.lib-donut-label-item{font-weight:400;font-size:.85em;color:#2f2f2f}.lib-donut-justified-label-wrapper{width:100%;display:inline-block;text-align:center;list-style-type:none}.lib-donut-justified-label-item{font-weight:400;font-size:.85em;color:#2f2f2f;display:inline-block;text-align:left;padding:0 10px}.lib-donut-justified-label-icon{display:inline-block;width:10px;height:10px;margin-right:5px;border-radius:3px}.lib-no-background{background:none!important}.lib-display-hidden{display:none}.lib-ylabel-weeklyCharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:12px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.07px;text-transform:capitalize;color:#000}.lib-data-labels-weeklycharts{font-style:normal;font-variant:normal;font-weight:400;font-size:12px;line-height:14px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.06px;color:#000}.lib-data-labels-angled-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:9.5px;line-height:11px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:.4px;text-anchor:start}.lib-xaxis-labels-texts-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:11px;letter-spacing:-.05px;fill:#000}.lib-xaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:-1px;color:#000;opacity:1;text-transform:capitalize}.lib-white-space-nowrap{white-space:nowrap}.lib-xaxis-labels-texts-drilldown-alt{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:10px;letter-spacing:0px;color:#000;opacity:1;text-transform:capitalize}.lib-yaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:0px;color:#000!important;opacity:1}.lib-ylabel-drilldowncharts,.lib-xlabel-drilldowncharts{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:16px;letter-spacing:-.1px;color:#000!important;opacity:1}.lib-donut-justified-label-icon-drilldown{display:inline-block;width:14px;height:14px;margin-right:10px;border-radius:50%}.marginright-2{margin-right:2%}.margintop-5{margin-top:5%}.width-100{width:100%}.float-right{float:right}.marginBottom-10{margin-bottom:10px}.header-alt{align-items:center;margin-bottom:10px}input::placeholder{font-size:20px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;color:#000;opacity:1}.padding-5{padding:5px}.hidden{visibility:hidden}.font-weight-bold{font-weight:900}.textalign-center{text-align:center}.cursor-pointer{cursor:pointer}.cursor-default{cursor:default}.font-weight-600{font-weight:600}.marginRight-15{margin-right:15px}.marginRight-20{margin-right:20px}.switch{position:relative;display:inline-block;width:46px;height:24px;margin-left:5px;margin-right:5px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;inset:0;background-color:#2d5ca0;-webkit-transition:.4s;transition:.4s}.slider:before{position:absolute;content:\"\";height:18px;width:18px;right:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider.round{border-radius:18px}.slider.round:before{border-radius:50%}.slider1{position:absolute;cursor:pointer;inset:0;background-color:#015ba2cf;-webkit-transition:.4s;transition:.4s}.slider1:before{position:absolute;content:\"\";height:18px;width:18px;left:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider1.round1{border-radius:18px}.slider1.round1:before{border-radius:50%}.lib-display-flex{display:flex}.lib-align-items-center{align-items:center}.lib-flex-direction-column{flex-direction:column}.lib-justify-content-space-between{justify-content:space-between}.lib-justify-content-space-around{justify-content:space-around}.lib-justify-content-center{justify-content:center}.lib-justify-content-start{justify-content:start}.lib-justify-content-end{justify-content:end}.lib-ml-20{margin-left:20px}.lib-position-absolute{position:absolute}.lib-z-index-9{z-index:9}.marginright-3{margin-right:3px}@media (min-height: 900px){.lib-chart-wrapper{border-radius:8px}.header-font-size-1{font-size:18px!important}.font-size-1{font-size:14px!important}.font-size-2{font-size:16px!important}.font-size-3{font-size:14px!important}.font-size-4{font-size:22px!important}.font-size-5{font-size:24px!important}}\n"] }]
|
|
7519
|
+
args: [{ selector: 'lib-horizontal-bars-with-scroll-zoom', encapsulation: ViewEncapsulation.None, template: "<meta http-equiv=\"CACHE-CONTROL\" content=\"NO-CACHE\" />\r\n<meta http-equiv=\"EXPIRES\" content=\"Sat, 01 Jun 2004 11:12:01 GMT\" />\r\n<div\r\n #verticalstackedcontainer\r\n class=\"lib-chart-wrapper\"\r\n [ngClass]=\"{ 'lib-no-background': isTransparentBackground }\"\r\n style=\"background-color: var(--card-bg);\"\r\n\r\n (resized)=\"onResized($event)\"\r\n>\r\n <div class=\"header-alt\" *ngIf=\"!isHeaderVisible\">\r\n <lib-chart-header-v2\r\n [chartData]=\"chartData\"\r\n [chartConfiguration]=\"chartConfiguration\"\r\n (clickEvent)=\"handleClick($event)\"\r\n ></lib-chart-header-v2>\r\n\r\n <lib-chart-header-v3\r\n [chartData]=\"chartData\"\r\n [chartConfiguration]=\"chartConfiguration\"\r\n (compareByFilterSelection)=\"handleCompareByFilterSelection($event)\"\r\n (zoomInZoomOutClick)=\"handleZoominZoomoutClick($event)\"\r\n ></lib-chart-header-v3>\r\n </div>\r\n <div\r\n [style.height]=\"chartConfiguration.svgHeight\"\r\n id=\"verticalstackedchartcontainer\"\r\n #verticalstackedchartcontainer\r\n class=\"lib-chart-svg\"\r\n ></div>\r\n</div>\r\n", styles: [".lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;letter-spacing:0px;color:#000;opacity:1;font-size:12px}.lib-axis-group-label{font-size:12px;font-weight:600;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;color:#000;opacity:1}.dots{font-size:10px}.inline__display{display:flex;justify-content:space-around;padding-top:2%}.verticalbar__text{font-style:normal;font-variant:normal;font-weight:400;font-size:13px;line-height:20px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;opacity:1}.lib-line-label-item{display:inline-block!important;font-size:.85em;margin-right:10px;font-weight:600}.lib-line-label-wrapper-vertical{display:flex;justify-content:center}.target-display{font-size:11px;line-height:13px;font-weight:700;text-transform:uppercase;float:right}.title{background-color:#d9d9d9;height:40px;display:flex;flex-direction:column;justify-content:center;align-items:center;border-radius:3px;line-height:1;padding:4px 8px;box-sizing:border-box}.title-top-text{color:var(--font-color)!important;font-size:12px;font-weight:600}.title-bar-name{color:var(--font-color)!important;font-size:14px;font-weight:700;text-transform:capitalize}.title-bottom-text{color:var(--font-color)!important;font-size:11px}.zoomIcons-holder{display:flex;align-items:center;margin-right:15px}.zoomIcons{border:.5px solid #b6b6b6;cursor:pointer;display:flex;justify-content:center;align-items:center;width:30px;height:30px;color:var(--color)!important}.zoom-active{background-color:#2d5ca0;opacity:1}.zoom-inactive{background-color:#d9d9d9;opacity:.5}.bottom__text{position:absolute!important;bottom:0!important;display:flex!important;justify-content:center!important;align-items:center!important;width:100%!important}.box__heightwidth{opacity:1;height:10px;width:10px;border:none!important;border-radius:50%}.label__text{margin-right:10px;display:flex;justify-content:center;align-items:center;font-style:normal;font-variant:normal;font-weight:400;font-size:10px;line-height:13px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;letter-spacing:.2px;color:#707070!important}.lib-verticalstack-labels-ontop-weklycharts{font-style:normal;font-variant:normal;font-weight:700;font-size:10px;line-height:11px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.05px;text-anchor:middle;fill:#000}.lib-verticalstack-title-ontop{font-style:normal;font-variant:normal;font-size:14px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.05px;text-anchor:middle;fill:#000}.marginLeft-20{margin-left:20px}.flex-inline{display:flex;justify-content:center;align-items:center;font-size:14px}@media (max-width: 767px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:9px!important}.lib-axis-group-label{font-size:10px!important}.dots{font-size:8px!important}.lib-xaxis-labels-texts-drilldown{writing-mode:sideways-lr;font-size:9px!important}.target-display{font-size:9px;line-height:11px}.title-top-text{font-size:10px}.title-bar-name{font-size:12px}.zoomIcons{width:26px;height:26px}.lib-verticalstack-labels-ontop-weklycharts{font-size:9px}}@media (min-width: 768px) and (max-width: 1023px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:10px!important}.lib-axis-group-label{font-size:11px!important}.dots{font-size:9px!important}.target-display{font-size:10px;line-height:12px}.title-top-text{font-size:11px}.title-bar-name{font-size:13px}.zoomIcons{width:28px;height:28px}}@media (min-width: 1024px) and (max-width: 1365px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:11px!important}.lib-axis-group-label{font-size:12px!important}.dots{font-size:10px!important}}@media (min-width: 1366px) and (max-width: 1919px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:12px!important}.lib-axis-group-label{font-size:13px!important}.dots{font-size:11px!important}}@media (min-width: 1920px) and (max-width: 2559px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:14px!important}.lib-axis-group-label{font-size:14px!important}.dots{font-size:12px!important}.target-display{font-size:13px;line-height:15px}.title-top-text{font-size:14px}.title-bar-name{font-size:16px}}@media (min-width: 2560px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:16px!important}.lib-axis-group-label{font-size:15px!important}.dots{font-size:14px!important}.target-display{font-size:14px;line-height:16px}.title-top-text{font-size:15px}.title-bar-name{font-size:18px}.zoomIcons{width:34px;height:34px}}@media (orientation: portrait) and (max-width: 767px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:8px!important}.lib-xaxis-labels-texts-drilldown{font-size:8px!important}}@media (orientation: landscape) and (min-width: 768px) and (max-width: 1023px){.lib-stacked-y-axis-text text,.lib-stacked-x-axis-text text{font-size:11px!important}}\n", ".lib-chart-wrapper{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;background:#fff 0% 0% no-repeat padding-box;position:relative}.lib-chart-wrapper-wo-shadow{width:100%;height:100%;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background){background-color:#2e3640}.lib-chart-wrapper:hover .chart-header-v1:not(.header-no-background) .chart-title{color:#fff}.lib-chart-svg{width:100%}.lib-chart-header{text-align:center;background-color:#052340;color:#fff;width:100%;height:17%;word-spacing:.5px;line-height:1.8;font-weight:700;padding-top:2%;letter-spacing:0;font-size:1.2em}.lib-donut-chart-footer{width:100%;text-align:right}.lib-donut-label-text{font-size:.9em;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-weight:400;letter-spacing:0px;color:#000;opacity:1}.lib-donut-label-icon{display:inline-block;width:10px;height:10px;margin-right:20px;border-radius:3px}.lib-donut-label-item{font-weight:400;font-size:.85em;color:#2f2f2f}.lib-donut-justified-label-wrapper{width:100%;display:inline-block;text-align:center;list-style-type:none}.lib-donut-justified-label-item{font-weight:400;font-size:.85em;color:#2f2f2f;display:inline-block;text-align:left;padding:0 10px}.lib-donut-justified-label-icon{display:inline-block;width:10px;height:10px;margin-right:5px;border-radius:3px}.lib-no-background{background:none!important}.lib-display-hidden{display:none}.lib-ylabel-weeklyCharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:12px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.07px;text-transform:capitalize;color:#000}.lib-data-labels-weeklycharts{font-style:normal;font-variant:normal;font-weight:400;font-size:12px;line-height:14px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:-.06px;color:#000}.lib-data-labels-angled-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:9.5px;line-height:11px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:.4px;text-anchor:start}.lib-xaxis-labels-texts-weeklycharts{font-style:normal;font-variant:normal;font-weight:800;font-size:10px;line-height:11px;letter-spacing:-.05px;fill:#000}.lib-xaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:-1px;color:#000;opacity:1;text-transform:capitalize}.lib-white-space-nowrap{white-space:nowrap}.lib-xaxis-labels-texts-drilldown-alt{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:10px;letter-spacing:0px;color:#000;opacity:1;text-transform:capitalize}.lib-yaxis-labels-texts-drilldown{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:14px;letter-spacing:0px;color:#000!important;opacity:1}.lib-ylabel-drilldowncharts,.lib-xlabel-drilldowncharts{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;font-size:16px;letter-spacing:-.1px;color:#000!important;opacity:1}.lib-donut-justified-label-icon-drilldown{display:inline-block;width:14px;height:14px;margin-right:10px;border-radius:50%}.marginright-2{margin-right:2%}.margintop-5{margin-top:5%}.width-100{width:100%}.float-right{float:right}.marginBottom-10{margin-bottom:10px}.header-alt{align-items:center;margin-bottom:10px}input::placeholder{font-size:20px;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto;letter-spacing:0px;color:#000;opacity:1}.padding-5{padding:5px}.hidden{visibility:hidden}.font-weight-bold{font-weight:900}.textalign-center{text-align:center}.cursor-pointer{cursor:pointer}.cursor-default{cursor:default}.font-weight-600{font-weight:600}.marginRight-15{margin-right:15px}.marginRight-20{margin-right:20px}.switch{position:relative;display:inline-block;width:46px;height:24px;margin-left:5px;margin-right:5px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;inset:0;background-color:#2d5ca0;-webkit-transition:.4s;transition:.4s}.slider:before{position:absolute;content:\"\";height:18px;width:18px;right:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider.round{border-radius:18px}.slider.round:before{border-radius:50%}.slider1{position:absolute;cursor:pointer;inset:0;background-color:#015ba2cf;-webkit-transition:.4s;transition:.4s}.slider1:before{position:absolute;content:\"\";height:18px;width:18px;left:3px;bottom:3px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.slider1.round1{border-radius:18px}.slider1.round1:before{border-radius:50%}.lib-display-flex{display:flex}.lib-align-items-center{align-items:center}.lib-flex-direction-column{flex-direction:column}.lib-justify-content-space-between{justify-content:space-between}.lib-justify-content-space-around{justify-content:space-around}.lib-justify-content-center{justify-content:center}.lib-justify-content-start{justify-content:start}.lib-justify-content-end{justify-content:end}.lib-ml-20{margin-left:20px}.lib-position-absolute{position:absolute}.lib-z-index-9{z-index:9}.marginright-3{margin-right:3px}@media (min-height: 900px){.lib-chart-wrapper{border-radius:8px}.header-font-size-1{font-size:18px!important}.font-size-1{font-size:14px!important}.font-size-2{font-size:16px!important}.font-size-3{font-size:14px!important}.font-size-4{font-size:22px!important}.font-size-5{font-size:24px!important}}\n"] }]
|
|
7501
7520
|
}], ctorParameters: () => [], propDecorators: { containerElt: [{
|
|
7502
7521
|
type: ViewChild,
|
|
7503
7522
|
args: ['verticalstackedchartcontainer', { static: true }]
|
|
@@ -7606,1242 +7625,6 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7606
7625
|
get isAlertEnabled() {
|
|
7607
7626
|
return this.chartConfiguration?.headerMenuOptions?.some((option) => option.id === 'editAlert');
|
|
7608
7627
|
}
|
|
7609
|
-
// initializegroupChart() {
|
|
7610
|
-
// var self = this;
|
|
7611
|
-
// let data = [];
|
|
7612
|
-
// let metaData: any = null;
|
|
7613
|
-
// let keyList = null;
|
|
7614
|
-
// let lineData = null;
|
|
7615
|
-
// let colorMap = {};
|
|
7616
|
-
// var formatFromBackend;
|
|
7617
|
-
// var formatForHugeNumbers;
|
|
7618
|
-
// const isMobile = window.innerWidth < 576;
|
|
7619
|
-
// const isTablet = window.innerWidth >= 576 && window.innerWidth < 992;
|
|
7620
|
-
// const isDesktop = window.innerWidth >= 992;
|
|
7621
|
-
// let isria = this.customChartConfiguration.isRia
|
|
7622
|
-
// var x: any;
|
|
7623
|
-
// var alternate_text = false;
|
|
7624
|
-
// var short_tick_length = 4;
|
|
7625
|
-
// var long_tick_length = 16;
|
|
7626
|
-
// /**
|
|
7627
|
-
// * longer tick length needed for weekly charts
|
|
7628
|
-
// */
|
|
7629
|
-
// var short_tick_length_bg = 5;
|
|
7630
|
-
// var long_tick_length_bg = 30;
|
|
7631
|
-
// var leftAndRightSpaces = 50;
|
|
7632
|
-
// var rightSvgWidth = 60;
|
|
7633
|
-
// var tempScale;
|
|
7634
|
-
// for (var i in this.defaultConfiguration) {
|
|
7635
|
-
// this.chartConfiguration[i] = ChartHelper.getValueByConfigurationType(
|
|
7636
|
-
// i,
|
|
7637
|
-
// this.defaultConfiguration,
|
|
7638
|
-
// this.customChartConfiguration
|
|
7639
|
-
// );
|
|
7640
|
-
// }
|
|
7641
|
-
// data = this.chartData.data;
|
|
7642
|
-
// metaData = this.chartData.metaData;
|
|
7643
|
-
// lineData = this.chartData.lineData;
|
|
7644
|
-
// // if (lineData || this.chartData.targetLineData) {
|
|
7645
|
-
// // rightSvgWidth = 60;
|
|
7646
|
-
// // }
|
|
7647
|
-
// if (!metaData.colorAboveTarget) {
|
|
7648
|
-
// metaData['colorAboveTarget'] = metaData.colors;
|
|
7649
|
-
// }
|
|
7650
|
-
// colorMap = metaData.colors;
|
|
7651
|
-
// keyList = metaData.keyList;
|
|
7652
|
-
// var chartContainer = d3.select(this.containerElt.nativeElement);
|
|
7653
|
-
// var verticalstackedcontainer = d3.select(
|
|
7654
|
-
// this.groupcontainerElt.nativeElement
|
|
7655
|
-
// );
|
|
7656
|
-
// var margin = this.chartConfiguration.margin;
|
|
7657
|
-
// const { width, height } = this.calculateChartDimensions(
|
|
7658
|
-
// chartContainer,
|
|
7659
|
-
// verticalstackedcontainer,
|
|
7660
|
-
// margin,
|
|
7661
|
-
// self
|
|
7662
|
-
// );
|
|
7663
|
-
// /**
|
|
7664
|
-
// * for hiding header
|
|
7665
|
-
// * used by weekly charts
|
|
7666
|
-
// */
|
|
7667
|
-
// if (this.chartConfiguration.isHeaderVisible != undefined)
|
|
7668
|
-
// this.isHeaderVisible = this.chartConfiguration.isHeaderVisible;
|
|
7669
|
-
// /**
|
|
7670
|
-
// * for hiding legends
|
|
7671
|
-
// * used by weekly charts
|
|
7672
|
-
// */
|
|
7673
|
-
// if (this.chartConfiguration.legendVisible != undefined) {
|
|
7674
|
-
// this.legendVisible = this.chartConfiguration.legendVisible;
|
|
7675
|
-
// }
|
|
7676
|
-
// /**
|
|
7677
|
-
// * for removing background color so that it can take parents color
|
|
7678
|
-
// *
|
|
7679
|
-
// */
|
|
7680
|
-
// if (this.chartConfiguration.isTransparentBackground != undefined) {
|
|
7681
|
-
// this.isTransparentBackground =
|
|
7682
|
-
// this.chartConfiguration.isTransparentBackground;
|
|
7683
|
-
// }
|
|
7684
|
-
// /**
|
|
7685
|
-
// * format data values based on configuration received
|
|
7686
|
-
// */
|
|
7687
|
-
// if (this.chartConfiguration.textFormatter != undefined) {
|
|
7688
|
-
// formatFromBackend = ChartHelper.dataValueFormatter(
|
|
7689
|
-
// this.chartConfiguration.textFormatter
|
|
7690
|
-
// );
|
|
7691
|
-
// formatForHugeNumbers = ChartHelper.dataValueFormatter('.2s');
|
|
7692
|
-
// }
|
|
7693
|
-
// const {
|
|
7694
|
-
// outerContainer,
|
|
7695
|
-
// svgYAxisLeft,
|
|
7696
|
-
// svgYAxisRight,
|
|
7697
|
-
// innerContainer,
|
|
7698
|
-
// svg
|
|
7699
|
-
// } = this.createChartContainers(chartContainer, margin, height, rightSvgWidth, self, width);
|
|
7700
|
-
// var subgroups: any = keyList;
|
|
7701
|
-
// var groups = d3
|
|
7702
|
-
// .map(data, function (d) {
|
|
7703
|
-
// return d.name;
|
|
7704
|
-
// })
|
|
7705
|
-
// .keys();
|
|
7706
|
-
// /**
|
|
7707
|
-
// * x axis range made similar to line chart or vertical stack so that all the charts will get aligned with each other.
|
|
7708
|
-
// */
|
|
7709
|
-
// if (this.chartConfiguration.isMultiChartGridLine != undefined) {
|
|
7710
|
-
// x = d3
|
|
7711
|
-
// .scaleBand()
|
|
7712
|
-
// .rangeRound([width, 0])
|
|
7713
|
-
// .align(0.5)
|
|
7714
|
-
// .padding([0.5])
|
|
7715
|
-
// .domain(
|
|
7716
|
-
// data.map(function (d: any) {
|
|
7717
|
-
// return d.name.toLowerCase();
|
|
7718
|
-
// })
|
|
7719
|
-
// );
|
|
7720
|
-
// } else {
|
|
7721
|
-
// x = d3
|
|
7722
|
-
// .scaleBand()
|
|
7723
|
-
// .domain(groups)
|
|
7724
|
-
// .range([leftAndRightSpaces, width - rightSvgWidth - leftAndRightSpaces])
|
|
7725
|
-
// .padding([0.3]);
|
|
7726
|
-
// }
|
|
7727
|
-
// // x.bandwidth(96);
|
|
7728
|
-
// var xScaleFromOrigin = d3
|
|
7729
|
-
// .scaleBand()
|
|
7730
|
-
// .domain(groups)
|
|
7731
|
-
// .range([0, width - rightSvgWidth]);
|
|
7732
|
-
// // .padding([0.2]);
|
|
7733
|
-
// if (this.chartConfiguration.isMultiChartGridLine == undefined) {
|
|
7734
|
-
// /**
|
|
7735
|
-
// * normal ticks for all dashboard charts
|
|
7736
|
-
// */
|
|
7737
|
-
// svg
|
|
7738
|
-
// .append('g')
|
|
7739
|
-
// .attr('class', 'x1 axis1')
|
|
7740
|
-
// .attr('transform', 'translate(0,' + height + ')')
|
|
7741
|
-
// .call(d3.axisBottom(x))
|
|
7742
|
-
// .call((g) => g.select('.domain').remove());
|
|
7743
|
-
// svg.selectAll('g.x1.axis1 g.tick line').remove();
|
|
7744
|
-
// // Only move x-axis labels further down for grouped charts if there is no xLabel
|
|
7745
|
-
// if (subgroups.length > 1 && !metaData.xLabel) {
|
|
7746
|
-
// svg
|
|
7747
|
-
// .selectAll('g.x1.axis1 g.tick text')
|
|
7748
|
-
// .attr('class', 'lib-xaxis-labels-texts-drilldown')
|
|
7749
|
-
// .style('fill', 'var(--chart-text-color)')
|
|
7750
|
-
// .attr('y', 32); // Increase distance from bars (default is ~9)
|
|
7751
|
-
// } else {
|
|
7752
|
-
// svg
|
|
7753
|
-
// .selectAll('g.x1.axis1 g.tick text')
|
|
7754
|
-
// .attr('class', 'lib-xaxis-labels-texts-drilldown')
|
|
7755
|
-
// .style('fill', 'var(--chart-text-color)');
|
|
7756
|
-
// }
|
|
7757
|
-
// }
|
|
7758
|
-
// else {
|
|
7759
|
-
// /**
|
|
7760
|
-
// * bigger ticks for weekly charts and more space from x axis to labels
|
|
7761
|
-
// */
|
|
7762
|
-
// /**
|
|
7763
|
-
// * draw x axis
|
|
7764
|
-
// */
|
|
7765
|
-
// svg
|
|
7766
|
-
// .append('g')
|
|
7767
|
-
// .attr('class', 'x1 axis1')
|
|
7768
|
-
// .attr('transform', 'translate(0,' + height + ')')
|
|
7769
|
-
// .call(d3.axisBottom(x).tickSize(0))
|
|
7770
|
-
// .call((g) => g.select('.domain').attr('fill', 'none'));
|
|
7771
|
-
// /**
|
|
7772
|
-
// * tick line size in alternate fashion
|
|
7773
|
-
// */
|
|
7774
|
-
// svg.selectAll('g.x1.axis1 g.tick line').attr('y2', function () {
|
|
7775
|
-
// if (
|
|
7776
|
-
// alternate_text &&
|
|
7777
|
-
// self.chartConfiguration.isNoAlternateXaxisText == undefined
|
|
7778
|
-
// ) {
|
|
7779
|
-
// alternate_text = false;
|
|
7780
|
-
// return long_tick_length_bg - 7;
|
|
7781
|
-
// } else {
|
|
7782
|
-
// alternate_text = true;
|
|
7783
|
-
// return short_tick_length_bg - 4;
|
|
7784
|
-
// }
|
|
7785
|
-
// });
|
|
7786
|
-
// /**
|
|
7787
|
-
// * reset the flag so that values can be shown in same alternate fashion
|
|
7788
|
-
// */
|
|
7789
|
-
// alternate_text = false;
|
|
7790
|
-
// /**
|
|
7791
|
-
// * print x-axis label texts
|
|
7792
|
-
// * used by weekly charts
|
|
7793
|
-
// */
|
|
7794
|
-
// svg
|
|
7795
|
-
// .selectAll('g.x1.axis1 g.tick text')
|
|
7796
|
-
// .attr('class', 'lib-xaxis-labels-texts-weeklycharts')
|
|
7797
|
-
// .attr('y', function () {
|
|
7798
|
-
// // Minimize gap in maximized (fullscreen) view for weekly charts
|
|
7799
|
-
// if (self.chartConfiguration.isFullScreen) {
|
|
7800
|
-
// return short_tick_length_bg;
|
|
7801
|
-
// }
|
|
7802
|
-
// if (alternate_text) {
|
|
7803
|
-
// alternate_text = false;
|
|
7804
|
-
// return long_tick_length_bg;
|
|
7805
|
-
// } else {
|
|
7806
|
-
// alternate_text = true;
|
|
7807
|
-
// return short_tick_length_bg;
|
|
7808
|
-
// }
|
|
7809
|
-
// });
|
|
7810
|
-
// }
|
|
7811
|
-
// if (self.chartConfiguration.xLabelsOnSameLine) {
|
|
7812
|
-
// const xAxisLabels = svg
|
|
7813
|
-
// .selectAll('g.x1.axis1 g.tick text')
|
|
7814
|
-
// .attr('class', 'lib-xaxis-labels-texts-drilldown')
|
|
7815
|
-
// .style('font-size', this.isHeaderVisible ? '18px' : '14px')
|
|
7816
|
-
// .attr('text-anchor', 'middle')
|
|
7817
|
-
// .attr('y', function(d) {
|
|
7818
|
-
// // For grouped bar charts with many bars and xLabel present, only add 5 if the label is a date
|
|
7819
|
-
// if (subgroups.length > 1 && data.length > 8 && metaData.xLabel) {
|
|
7820
|
-
// const isDateLabel = /\d{2,4}[-\/]/.test(d);
|
|
7821
|
-
// if (self.chartConfiguration.isFullScreen) {
|
|
7822
|
-
// return isDateLabel ? short_tick_length_bg + 14 : short_tick_length_bg;
|
|
7823
|
-
// }
|
|
7824
|
-
// return isDateLabel ? short_tick_length_bg + 14 : short_tick_length_bg;
|
|
7825
|
-
// }
|
|
7826
|
-
// // For grouped bar charts with many bars and NO xLabel, add space as before, but reduce in fullscreen
|
|
7827
|
-
// if (subgroups.length > 1 && data.length > 8 && !metaData.xLabel) {
|
|
7828
|
-
// const chartHasExtraBottom = (self.chartConfiguration.margin && self.chartConfiguration.margin.bottom >= 40);
|
|
7829
|
-
// if (self.chartConfiguration.isFullScreen) {
|
|
7830
|
-
// // Reduce extra gap in maximized view
|
|
7831
|
-
// return short_tick_length_bg + 2;
|
|
7832
|
-
// }
|
|
7833
|
-
// return chartHasExtraBottom ? short_tick_length_bg : short_tick_length_bg + 10;
|
|
7834
|
-
// }
|
|
7835
|
-
// // Default/fallback logic for other cases
|
|
7836
|
-
// let baseY = self.isHeaderVisible ? short_tick_length_bg + 25 : short_tick_length_bg;
|
|
7837
|
-
// if (
|
|
7838
|
-
// subgroups.length > 1 &&
|
|
7839
|
-
// !metaData.xLabel &&
|
|
7840
|
-
// (/\d{2,4}[-\/]\d{2}[-\/]\d{2,4}/.test(d) || /\d{2,4}[-\/]\d{2,4}/.test(d))
|
|
7841
|
-
// ) {
|
|
7842
|
-
// baseY = self.isHeaderVisible ? short_tick_length_bg + 15 : short_tick_length_bg + 25;
|
|
7843
|
-
// }
|
|
7844
|
-
// if (/\d{2,4}[-\/]\d{2,4}/.test(d) && d.indexOf(' ') > -1) {
|
|
7845
|
-
// baseY += 4;
|
|
7846
|
-
// }
|
|
7847
|
-
// // In maximized view, reduce baseY slightly for grouped bars
|
|
7848
|
-
// if (self.chartConfiguration.isFullScreen && subgroups.length > 1) {
|
|
7849
|
-
// baseY = Math.max(short_tick_length_bg, baseY - 10);
|
|
7850
|
-
// }
|
|
7851
|
-
// return baseY;
|
|
7852
|
-
// })
|
|
7853
|
-
// .attr('x', function (d) {
|
|
7854
|
-
// if (self.chartData.data.length > 8 && !self.isZoomedOut) {
|
|
7855
|
-
// return 1; // Move first line text slightly to the left in zoom-in view for better alignment
|
|
7856
|
-
// }
|
|
7857
|
-
// return 0; // Default position
|
|
7858
|
-
// })
|
|
7859
|
-
// .text(function (d) {
|
|
7860
|
-
// var isValueToBeIgnored = false;
|
|
7861
|
-
// if (isMobile && !self.isHeaderVisible) {
|
|
7862
|
-
// let firstPart = d.split(/[\s\-]+/)[0];
|
|
7863
|
-
// return firstPart.substring(0, 3).toLowerCase();
|
|
7864
|
-
// }
|
|
7865
|
-
// (data as any[]).map((indiv: any) => {
|
|
7866
|
-
// if (
|
|
7867
|
-
// indiv.name &&
|
|
7868
|
-
// indiv.name.toLowerCase() == d.trim().toLowerCase() &&
|
|
7869
|
-
// indiv[metaData.keyList[0]] == -1
|
|
7870
|
-
// ) {
|
|
7871
|
-
// isValueToBeIgnored = true;
|
|
7872
|
-
// }
|
|
7873
|
-
// });
|
|
7874
|
-
// if (isValueToBeIgnored) {
|
|
7875
|
-
// return '';
|
|
7876
|
-
// }
|
|
7877
|
-
// // Always add space before and after hyphen for date range labels, even when header is visible and label is single line
|
|
7878
|
-
// // Apply for grouped bar charts and single bar charts, header visible, single line
|
|
7879
|
-
// const dateRangeRegex = /(\d{2,4}[-\/]\d{2}[-\/]\d{2,4})\s*-\s*(\d{2,4}[-\/]\d{2}[-\/]\d{2,4})/;
|
|
7880
|
-
// if (dateRangeRegex.test(d.trim())) {
|
|
7881
|
-
// return d.trim().replace(dateRangeRegex, (m, d1, d2) => `${d1} - ${d2}`);
|
|
7882
|
-
// }
|
|
7883
|
-
// // Split date and week labels into two lines in grouped bar zoom-in view (and minimized view)
|
|
7884
|
-
// const isDateLabel = /\d{2,4}[-\/]/.test(d);
|
|
7885
|
-
// const isWeekLabel = /week|wk|w\d+/i.test(d);
|
|
7886
|
-
// if (
|
|
7887
|
-
// subgroups.length > 1 && !self.isZoomedOut && data.length > 8 && d.indexOf(' ') > -1 && (isDateLabel || isWeekLabel)
|
|
7888
|
-
// ) {
|
|
7889
|
-
// var first = d.substring(0, d.indexOf(' '));
|
|
7890
|
-
// var second = d.substring(d.indexOf(' ') + 1).trim();
|
|
7891
|
-
// return first + '\n' + second;
|
|
7892
|
-
// }
|
|
7893
|
-
// // Also keep previous logic for minimized view
|
|
7894
|
-
// if (isDateLabel) {
|
|
7895
|
-
// if (!self.isHeaderVisible && data.length > 8 && d.indexOf(' ') > -1) {
|
|
7896
|
-
// var first = d.substring(0, d.indexOf(' '));
|
|
7897
|
-
// var second = d.substring(d.indexOf(' ') + 1).trim();
|
|
7898
|
-
// return first + '\n' + second;
|
|
7899
|
-
// } else {
|
|
7900
|
-
// return d;
|
|
7901
|
-
// }
|
|
7902
|
-
// }
|
|
7903
|
-
// if (d.trim().indexOf(' ') > -1) {
|
|
7904
|
-
// return d.trim().substring(0, d.indexOf(' ')).toLowerCase();
|
|
7905
|
-
// }
|
|
7906
|
-
// return d.toLowerCase();
|
|
7907
|
-
// // If label looks like a date (contains digits and - or /)
|
|
7908
|
-
// const isDateLabel2 = /\d{2,4}[-\/]/.test(d);
|
|
7909
|
-
// // Only split date/week labels if there are many grouped bars and header is not visible
|
|
7910
|
-
// if (isDateLabel) {
|
|
7911
|
-
// if (!self.isHeaderVisible && data.length > 8 && d.indexOf(' ') > -1) {
|
|
7912
|
-
// var first = d.substring(0, d.indexOf(' '));
|
|
7913
|
-
// var second = d.substring(d.indexOf(' ') + 1).trim();
|
|
7914
|
-
// return first + '\n' + second;
|
|
7915
|
-
// } else {
|
|
7916
|
-
// return d;
|
|
7917
|
-
// }
|
|
7918
|
-
// }
|
|
7919
|
-
// if (d.trim().indexOf(' ') > -1) {
|
|
7920
|
-
// return d.trim().substring(0, d.indexOf(' ')).toLowerCase();
|
|
7921
|
-
// }
|
|
7922
|
-
// return d.toLowerCase();
|
|
7923
|
-
// });
|
|
7924
|
-
// // Now apply writing-mode: sideways-lr for grouped charts with date labels in zoomed-out view and many bars
|
|
7925
|
-
// xAxisLabels.each(function(this: SVGTextElement, d: any) {
|
|
7926
|
-
// // Only apply writing-mode for exact date labels, not those containing 'week' or similar
|
|
7927
|
-
// const isDateLabel = /^(\d{2,4}[-\/])?\d{2,4}[-\/]\d{2,4}$/.test(d.trim());
|
|
7928
|
-
// const isWeekLabel = /week|wk|w\d+/i.test(d);
|
|
7929
|
-
// if (subgroups.length > 1 && self.isZoomedOut && data.length > 8 && isDateLabel && !isWeekLabel) {
|
|
7930
|
-
// d3.select(this).style('writing-mode', 'sideways-lr');
|
|
7931
|
-
// }
|
|
7932
|
-
// });
|
|
7933
|
-
// if (!isMobile) {
|
|
7934
|
-
// svg
|
|
7935
|
-
// .selectAll('g.x1.axis1 g.tick')
|
|
7936
|
-
// .filter(function (d) {
|
|
7937
|
-
// return !/\d{2,4}[-\/]/.test(d); // Only process non-date labels
|
|
7938
|
-
// })
|
|
7939
|
-
// .append('text')
|
|
7940
|
-
// .attr('class', 'lib-xaxis-labels-texts-drilldown')
|
|
7941
|
-
// .attr('y', long_tick_length_bg)
|
|
7942
|
-
// .attr('fill', 'var(--chart-text-color)')
|
|
7943
|
-
// .attr('x', function (d) {
|
|
7944
|
-
// if (self.chartData.data.length > 8 && !self.isZoomedOut) {
|
|
7945
|
-
// return 1; // Move text slightly to the left
|
|
7946
|
-
// }
|
|
7947
|
-
// return 0; // Default position
|
|
7948
|
-
// })
|
|
7949
|
-
// .text(function (d) {
|
|
7950
|
-
// if (d.trim().indexOf(' ') > -1) {
|
|
7951
|
-
// return d.trim().substring(d.indexOf(' '), d.length).toLowerCase();
|
|
7952
|
-
// }
|
|
7953
|
-
// return '';
|
|
7954
|
-
// });
|
|
7955
|
-
// }
|
|
7956
|
-
// }
|
|
7957
|
-
// if (isria && self.chartData.data.length > 8) {
|
|
7958
|
-
// svg
|
|
7959
|
-
// .selectAll('g.x1.axis1 g.tick text')
|
|
7960
|
-
// .classed('mobile-xaxis-override', true)
|
|
7961
|
-
// .text(function (d: string) {
|
|
7962
|
-
// return d.substring(0, 3);
|
|
7963
|
-
// })
|
|
7964
|
-
// .style('font-size', '12px')
|
|
7965
|
-
// .attr('y', 5)
|
|
7966
|
-
// .attr('x', 5)
|
|
7967
|
-
// .style('text-anchor', 'middle');
|
|
7968
|
-
// }
|
|
7969
|
-
// if (isMobile && !this.isHeaderVisible) {
|
|
7970
|
-
// svg
|
|
7971
|
-
// .selectAll('g.x1.axis1 g.tick text')
|
|
7972
|
-
// .classed('mobile-xaxis-override', true);
|
|
7973
|
-
// }
|
|
7974
|
-
// /**y scale for left y axis */
|
|
7975
|
-
// var y = d3.scaleLinear().rangeRound([height, 0]);
|
|
7976
|
-
// var maxValue = d3.max(data, (d) => d3.max(keyList, (key) => +d[key]));
|
|
7977
|
-
// if (maxValue == 0) {
|
|
7978
|
-
// if (this.chartData.targetLineData) {
|
|
7979
|
-
// maxValue = this.chartData.targetLineData.target + 20;
|
|
7980
|
-
// } else {
|
|
7981
|
-
// maxValue = 100;
|
|
7982
|
-
// }
|
|
7983
|
-
// }
|
|
7984
|
-
// if (this.chartConfiguration.customYscale) {
|
|
7985
|
-
// /**
|
|
7986
|
-
// * increase y-scale so that values wont cross or exceed out of range
|
|
7987
|
-
// * used in weekly charts
|
|
7988
|
-
// */
|
|
7989
|
-
// maxValue = maxValue * this.chartConfiguration.customYscale;
|
|
7990
|
-
// }
|
|
7991
|
-
// if (
|
|
7992
|
-
// this.chartData.targetLineData &&
|
|
7993
|
-
// maxValue < this.chartData.targetLineData.target
|
|
7994
|
-
// ) {
|
|
7995
|
-
// maxValue =
|
|
7996
|
-
// maxValue < 10 && this.chartData.targetLineData.target < 10
|
|
7997
|
-
// ? this.chartData.targetLineData.target + 3
|
|
7998
|
-
// : this.chartData.targetLineData.target + 20;
|
|
7999
|
-
// }
|
|
8000
|
-
// y.domain([0, maxValue]).nice();
|
|
8001
|
-
// let lineYscale;
|
|
8002
|
-
// if (lineData != null) {
|
|
8003
|
-
// let maxLineValue = d3.max(lineData, function (d) {
|
|
8004
|
-
// return +d.value;
|
|
8005
|
-
// });
|
|
8006
|
-
// maxLineValue = maxLineValue * this.chartConfiguration.customYscale;
|
|
8007
|
-
// let minLineValue = d3.min(lineData, function (d) {
|
|
8008
|
-
// return +d.value;
|
|
8009
|
-
// });
|
|
8010
|
-
// if (maxLineValue > 0) minLineValue = minLineValue - 3;
|
|
8011
|
-
// if (minLineValue > 0) {
|
|
8012
|
-
// minLineValue = 0;
|
|
8013
|
-
// }
|
|
8014
|
-
// lineYscale = d3
|
|
8015
|
-
// .scaleLinear()
|
|
8016
|
-
// .domain([minLineValue, maxLineValue])
|
|
8017
|
-
// .range([height, minLineValue]);
|
|
8018
|
-
// }
|
|
8019
|
-
// let yLineAxis;
|
|
8020
|
-
// if (lineYscale != null) {
|
|
8021
|
-
// yLineAxis = d3
|
|
8022
|
-
// .axisRight(lineYscale)
|
|
8023
|
-
// .ticks(self.chartConfiguration.numberOfYTicks)
|
|
8024
|
-
// .tickSize(0)
|
|
8025
|
-
// .tickFormat(self.chartConfiguration.yLineAxisLabelFomatter);
|
|
8026
|
-
// }
|
|
8027
|
-
// /**
|
|
8028
|
-
// * show x-axis grid between labels
|
|
8029
|
-
// * used by weekly charts
|
|
8030
|
-
// */
|
|
8031
|
-
// if (self.chartConfiguration.isXgridBetweenLabels) {
|
|
8032
|
-
// svg
|
|
8033
|
-
// .append('g')
|
|
8034
|
-
// .attr('class', 'grid')
|
|
8035
|
-
// .attr(
|
|
8036
|
-
// 'transform',
|
|
8037
|
-
// 'translate(' + x.bandwidth() / 2 + ',' + height + ')'
|
|
8038
|
-
// )
|
|
8039
|
-
// .call(d3.axisBottom(x).tickSize(-height).tickFormat(''))
|
|
8040
|
-
// .style('stroke-dasharray', '5 5')
|
|
8041
|
-
// .style('color', 'var(--chart-grid-color, #999999)') // Use CSS variable
|
|
8042
|
-
// .call((g) => g.select('.domain').remove());
|
|
8043
|
-
// }
|
|
8044
|
-
// if (this.chartConfiguration.yAxisGrid) {
|
|
8045
|
-
// svg
|
|
8046
|
-
// .append('g')
|
|
8047
|
-
// .call(
|
|
8048
|
-
// d3
|
|
8049
|
-
// .axisLeft(y)
|
|
8050
|
-
// .ticks(self.chartConfiguration.numberOfYTicks)
|
|
8051
|
-
// .tickSize(-width)
|
|
8052
|
-
// )
|
|
8053
|
-
// .style('color', 'var(--chart-axis-color, #B9B9B9)')
|
|
8054
|
-
// .style('opacity', '0.5')
|
|
8055
|
-
// .call((g) => {
|
|
8056
|
-
// g.select('.domain')
|
|
8057
|
-
// .remove()
|
|
8058
|
-
// .style('stroke', 'var(--chart-domain-color, #000000)'); // Add CSS variable for domain
|
|
8059
|
-
// });
|
|
8060
|
-
// } else {
|
|
8061
|
-
// svg
|
|
8062
|
-
// .append('g')
|
|
8063
|
-
// .call(d3.axisLeft(y).ticks(self.chartConfiguration.numberOfYTicks))
|
|
8064
|
-
// .style('color', 'var(--chart-axis-color, #B9B9B9)')
|
|
8065
|
-
// .style('opacity', '0.5')
|
|
8066
|
-
// .call((g) => {
|
|
8067
|
-
// g.select('.domain')
|
|
8068
|
-
// .style('stroke', 'var(--chart-domain-color, #000000)') // Add CSS variable for domain
|
|
8069
|
-
// .style('stroke-width', '1px'); // Ensure visibility
|
|
8070
|
-
// });
|
|
8071
|
-
// }
|
|
8072
|
-
// var xSubgroup = d3.scaleBand().domain(subgroups);
|
|
8073
|
-
// if (subgroups.length > 1 && !this.isZoomedOut) {
|
|
8074
|
-
// // For grouped bar charts in zoom-in view, use full x.bandwidth() for subgroups
|
|
8075
|
-
// xSubgroup.range([0, x.bandwidth()]);
|
|
8076
|
-
// } else if (subgroups.length === 1 && !this.isZoomedOut) {
|
|
8077
|
-
// // For single-bar (non-grouped) charts in zoom-in view, set bar width to 100 (increased from 80)
|
|
8078
|
-
// xSubgroup.range([0, 100]);
|
|
8079
|
-
// } else if (this.chartConfiguration.isMultiChartGridLine == undefined) {
|
|
8080
|
-
// xSubgroup.range([0, x.bandwidth()]);
|
|
8081
|
-
// } else {
|
|
8082
|
-
// // used to make grouped bars with lesser width as we are not using padding for width
|
|
8083
|
-
// xSubgroup.range([0, x.bandwidth()]);
|
|
8084
|
-
// }
|
|
8085
|
-
// // if (this.chartConfiguration.isDrilldownChart) {
|
|
8086
|
-
// // }
|
|
8087
|
-
// var color = d3
|
|
8088
|
-
// .scaleOrdinal()
|
|
8089
|
-
// .domain(subgroups)
|
|
8090
|
-
// .range(Object.values(metaData.colors));
|
|
8091
|
-
// // var colorAboveTarget = d3
|
|
8092
|
-
// // .scaleOrdinal()
|
|
8093
|
-
// // .domain(subgroups)
|
|
8094
|
-
// // .range(Object.values(metaData.colorAboveTarget));
|
|
8095
|
-
// var state = svg
|
|
8096
|
-
// .append('g')
|
|
8097
|
-
// .selectAll('.state')
|
|
8098
|
-
// .data(data)
|
|
8099
|
-
// .enter()
|
|
8100
|
-
// .append('g')
|
|
8101
|
-
// .attr('transform', function (d) {
|
|
8102
|
-
// return 'translate(' + x(d.name) + ',0)';
|
|
8103
|
-
// });
|
|
8104
|
-
// state
|
|
8105
|
-
// .selectAll('rect')
|
|
8106
|
-
// .data(function (d) {
|
|
8107
|
-
// let newList: any = [];
|
|
8108
|
-
// subgroups.map(function (key) {
|
|
8109
|
-
// // if (key !== "group") {
|
|
8110
|
-
// let obj: any = { key: key, value: d[key], name: d.name };
|
|
8111
|
-
// newList.push(obj);
|
|
8112
|
-
// // }
|
|
8113
|
-
// });
|
|
8114
|
-
// return newList;
|
|
8115
|
-
// })
|
|
8116
|
-
// .enter()
|
|
8117
|
-
// .append('rect')
|
|
8118
|
-
// .attr('class', 'bars')
|
|
8119
|
-
// .on('click', function (d) {
|
|
8120
|
-
// if (d.key != 'Target') {
|
|
8121
|
-
// if (
|
|
8122
|
-
// !metaData.barWithoutClick ||
|
|
8123
|
-
// !metaData.barWithoutClick.length ||
|
|
8124
|
-
// (!metaData.barWithoutClick.includes(d?.name) &&
|
|
8125
|
-
// !metaData.barWithoutClick.includes(d?.key))
|
|
8126
|
-
// )
|
|
8127
|
-
// // self.handleClick(d.data.name);
|
|
8128
|
-
// self.handleClick(d);
|
|
8129
|
-
// }
|
|
8130
|
-
// })
|
|
8131
|
-
// .attr('x', function (d) {
|
|
8132
|
-
// if (self.chartConfiguration.isDrilldownChart) {
|
|
8133
|
-
// data.map((indiv: any) => {
|
|
8134
|
-
// if (indiv.name == d.name) {
|
|
8135
|
-
// let keys = Object.keys(indiv).filter((temp, i) => i != 0);
|
|
8136
|
-
// tempScale = d3.scaleBand().domain(keys).range([0, x.bandwidth()]);
|
|
8137
|
-
// if (x.bandwidth() > 100) {
|
|
8138
|
-
// // Increase bar width a bit in zoom-in view
|
|
8139
|
-
// let reducedBarWidth = 60;
|
|
8140
|
-
// if (!self.isZoomedOut) {
|
|
8141
|
-
// reducedBarWidth = 30;
|
|
8142
|
-
// }
|
|
8143
|
-
// if (self.chartData.data.length == 1) {
|
|
8144
|
-
// if (Object.keys(self.chartData.data[0]).length == 2) {
|
|
8145
|
-
// tempScale.range([
|
|
8146
|
-
// 0 + (x.bandwidth() - reducedBarWidth) / 2,
|
|
8147
|
-
// x.bandwidth() - (x.bandwidth() - reducedBarWidth) / 2,
|
|
8148
|
-
// ]);
|
|
8149
|
-
// } else
|
|
8150
|
-
// tempScale.range([
|
|
8151
|
-
// 0 + (x.bandwidth() - reducedBarWidth) / 2,
|
|
8152
|
-
// x.bandwidth() - (x.bandwidth() - reducedBarWidth) / 2,
|
|
8153
|
-
// ]);
|
|
8154
|
-
// } else
|
|
8155
|
-
// tempScale.range([
|
|
8156
|
-
// 0 + (x.bandwidth() - reducedBarWidth) / 2,
|
|
8157
|
-
// x.bandwidth() - (x.bandwidth() - reducedBarWidth) / 2,
|
|
8158
|
-
// ]);
|
|
8159
|
-
// }
|
|
8160
|
-
// }
|
|
8161
|
-
// });
|
|
8162
|
-
// return tempScale(d.key);
|
|
8163
|
-
// }
|
|
8164
|
-
// return xSubgroup(d.key);
|
|
8165
|
-
// })
|
|
8166
|
-
// .attr('y', function (d) {
|
|
8167
|
-
// if (d.value == -1) {
|
|
8168
|
-
// return y(0);
|
|
8169
|
-
// }
|
|
8170
|
-
// if (d.value >= 0) {
|
|
8171
|
-
// const barHeight = height - y(d.value);
|
|
8172
|
-
// const minHeight = self.chartConfiguration.defaultBarHeight || 2;
|
|
8173
|
-
// return barHeight < minHeight ? y(0) - minHeight : y(d.value);
|
|
8174
|
-
// }
|
|
8175
|
-
// return y(0);
|
|
8176
|
-
// })
|
|
8177
|
-
// .attr('width', function (d) {
|
|
8178
|
-
// // For grouped bar charts in zoom-in view, set bar width to 50 for maximum thickness
|
|
8179
|
-
// if (subgroups.length > 1 && !self.isZoomedOut) {
|
|
8180
|
-
// return 50;
|
|
8181
|
-
// }
|
|
8182
|
-
// // For single-bar (non-grouped) charts in zoom-in view, set bar width to 80
|
|
8183
|
-
// if (subgroups.length === 1 && !self.isZoomedOut) {
|
|
8184
|
-
// return 80;
|
|
8185
|
-
// }
|
|
8186
|
-
// let tempScale = d3.scaleBand().domain([]).range([0, 0]);
|
|
8187
|
-
// // Default logic for other chart types
|
|
8188
|
-
// if (self.chartConfiguration.isDrilldownChart) {
|
|
8189
|
-
// data.map((indiv: any) => {
|
|
8190
|
-
// if (indiv.name == d.name) {
|
|
8191
|
-
// let keys = Object.keys(indiv).filter((temp, i) => i != 0);
|
|
8192
|
-
// tempScale = d3.scaleBand().domain(keys).range([0, x.bandwidth()]);
|
|
8193
|
-
// if (x.bandwidth() > 100) {
|
|
8194
|
-
// // Increase bar width a bit in zoom-in view
|
|
8195
|
-
// let reducedBarWidth = 60;
|
|
8196
|
-
// if (!self.isZoomedOut) {
|
|
8197
|
-
// reducedBarWidth = 100;
|
|
8198
|
-
// }
|
|
8199
|
-
// if (self.chartData.data.length == 1) {
|
|
8200
|
-
// if (Object.keys(self.chartData.data[0]).length == 2) {
|
|
8201
|
-
// tempScale.range([
|
|
8202
|
-
// 0 + (x.bandwidth() - reducedBarWidth) / 2,
|
|
8203
|
-
// x.bandwidth() - (x.bandwidth() - reducedBarWidth) / 2,
|
|
8204
|
-
// ]);
|
|
8205
|
-
// } else
|
|
8206
|
-
// tempScale.range([
|
|
8207
|
-
// 0 + (x.bandwidth() - reducedBarWidth) / 2,
|
|
8208
|
-
// x.bandwidth() - (x.bandwidth() - reducedBarWidth) / 2,
|
|
8209
|
-
// ]);
|
|
8210
|
-
// } else
|
|
8211
|
-
// tempScale.range([
|
|
8212
|
-
// 0 + (x.bandwidth() - reducedBarWidth) / 2,
|
|
8213
|
-
// x.bandwidth() - (x.bandwidth() - reducedBarWidth) / 2,
|
|
8214
|
-
// ]);
|
|
8215
|
-
// }
|
|
8216
|
-
// }
|
|
8217
|
-
// });
|
|
8218
|
-
// return self.isZoomedOut
|
|
8219
|
-
// ? tempScale.bandwidth()
|
|
8220
|
-
// : self.chartData.data.length && self.chartData.data.length > 8
|
|
8221
|
-
// ? tempScale.bandwidth()
|
|
8222
|
-
// : tempScale.bandwidth();
|
|
8223
|
-
// }
|
|
8224
|
-
// return self.isZoomedOut
|
|
8225
|
-
// ? tempScale.bandwidth()
|
|
8226
|
-
// : self.chartData.data.length && self.chartData.data.length > 8
|
|
8227
|
-
// ? tempScale.bandwidth()
|
|
8228
|
-
// : tempScale.bandwidth();
|
|
8229
|
-
// })
|
|
8230
|
-
// .attr('height', function (d) {
|
|
8231
|
-
// if (d.value == -1) {
|
|
8232
|
-
// return height - y(0);
|
|
8233
|
-
// }
|
|
8234
|
-
// if (d.value >= 0) {
|
|
8235
|
-
// const barHeight = height - y(d.value);
|
|
8236
|
-
// const minHeight = self.chartConfiguration.defaultBarHeight || 2;
|
|
8237
|
-
// return Math.max(barHeight, minHeight);
|
|
8238
|
-
// }
|
|
8239
|
-
// return height - y(0);
|
|
8240
|
-
// })
|
|
8241
|
-
// .style('cursor', function (d) {
|
|
8242
|
-
// if (metaData.hasDrillDown && !isria) return 'pointer';
|
|
8243
|
-
// else return 'default';
|
|
8244
|
-
// })
|
|
8245
|
-
// .attr('fill', function (d) {
|
|
8246
|
-
// if (
|
|
8247
|
-
// d.value &&
|
|
8248
|
-
// self.chartData.targetLineData &&
|
|
8249
|
-
// d.value >= parseFloat(self.chartData.targetLineData.target) &&
|
|
8250
|
-
// self.chartData.metaData.colorAboveTarget
|
|
8251
|
-
// ) {
|
|
8252
|
-
// const key = d.key.toLowerCase();
|
|
8253
|
-
// const colorAboveTarget = Object.keys(self.chartData.metaData.colorAboveTarget).find(
|
|
8254
|
-
// k => k.toLowerCase() === key
|
|
8255
|
-
// );
|
|
8256
|
-
// if (colorAboveTarget) {
|
|
8257
|
-
// return self.chartData.metaData.colorAboveTarget[colorAboveTarget];
|
|
8258
|
-
// }
|
|
8259
|
-
// }
|
|
8260
|
-
// return self.chartData.metaData.colors[d.key];
|
|
8261
|
-
// });
|
|
8262
|
-
// /**
|
|
8263
|
-
// * display angled texts on the bars
|
|
8264
|
-
// */
|
|
8265
|
-
// if (this.chartConfiguration.textsOnBar != undefined && !this.isZoomedOut) {
|
|
8266
|
-
// state
|
|
8267
|
-
// .selectAll('text')
|
|
8268
|
-
// .data(function (d) {
|
|
8269
|
-
// let newList: any = [];
|
|
8270
|
-
// subgroups.map(function (key) {
|
|
8271
|
-
// let obj: any = { key: key, value: d[key], name: d.name };
|
|
8272
|
-
// newList.push(obj);
|
|
8273
|
-
// });
|
|
8274
|
-
// return newList;
|
|
8275
|
-
// })
|
|
8276
|
-
// .enter()
|
|
8277
|
-
// .append('text')
|
|
8278
|
-
// .attr('fill', 'var(--chart-text-color)')
|
|
8279
|
-
// .attr('x', function (d) {
|
|
8280
|
-
// return 0;
|
|
8281
|
-
// })
|
|
8282
|
-
// .attr('y', function (d) {
|
|
8283
|
-
// return 0;
|
|
8284
|
-
// })
|
|
8285
|
-
// .attr('class', 'lib-data-labels-weeklycharts')
|
|
8286
|
-
// .text(function (d) {
|
|
8287
|
-
// return d.key && d.value
|
|
8288
|
-
// ? d.key.length > 20
|
|
8289
|
-
// ? d.key.substring(0, 17) + '...'
|
|
8290
|
-
// : d.key
|
|
8291
|
-
// : '';
|
|
8292
|
-
// })
|
|
8293
|
-
// .style('fill', function (d) {
|
|
8294
|
-
// return '#000';
|
|
8295
|
-
// })
|
|
8296
|
-
// .style('font-weight', 'bold')
|
|
8297
|
-
// .style('font-size', function (d) {
|
|
8298
|
-
// if (self.isZoomedOut) {
|
|
8299
|
-
// return '9px'; // 👈 Zoomed out mode
|
|
8300
|
-
// }
|
|
8301
|
-
// if (self.chartConfiguration.isDrilldownChart) {
|
|
8302
|
-
// if (window.innerWidth > 1900) {
|
|
8303
|
-
// return '18px';
|
|
8304
|
-
// } else if (window.innerWidth < 1400) {
|
|
8305
|
-
// return '10px';
|
|
8306
|
-
// } else {
|
|
8307
|
-
// return '14px';
|
|
8308
|
-
// }
|
|
8309
|
-
// } else {
|
|
8310
|
-
// return '14px';
|
|
8311
|
-
// }
|
|
8312
|
-
// })
|
|
8313
|
-
// .attr('transform', function (d) {
|
|
8314
|
-
// data.map((indiv: any) => {
|
|
8315
|
-
// if (indiv.name == d.name) {
|
|
8316
|
-
// let keys = Object.keys(indiv).filter((temp, i) => i != 0);
|
|
8317
|
-
// var temp;
|
|
8318
|
-
// tempScale = d3.scaleBand().domain(keys).range([0, x.bandwidth()]);
|
|
8319
|
-
// if (x.bandwidth() > 100) {
|
|
8320
|
-
// if (self.chartData.data.length == 1) {
|
|
8321
|
-
// if (Object.keys(self.chartData.data[0]).length == 2) {
|
|
8322
|
-
// tempScale.range([
|
|
8323
|
-
// 0 + (x.bandwidth() - 200) / 2,
|
|
8324
|
-
// x.bandwidth() - (x.bandwidth() - 200) / 2,
|
|
8325
|
-
// ]);
|
|
8326
|
-
// // .padding(0.05);
|
|
8327
|
-
// } else
|
|
8328
|
-
// tempScale.range([
|
|
8329
|
-
// 0 + (x.bandwidth() - 300) / 2,
|
|
8330
|
-
// x.bandwidth() - (x.bandwidth() - 300) / 2,
|
|
8331
|
-
// ]);
|
|
8332
|
-
// // .padding(0.05);
|
|
8333
|
-
// } else
|
|
8334
|
-
// tempScale.range([
|
|
8335
|
-
// 0 + (x.bandwidth() - 125) / 2,
|
|
8336
|
-
// x.bandwidth() - (x.bandwidth() - 125) / 2,
|
|
8337
|
-
// ]);
|
|
8338
|
-
// }
|
|
8339
|
-
// }
|
|
8340
|
-
// });
|
|
8341
|
-
// /**
|
|
8342
|
-
// * if set, then all texts ll be horizontal
|
|
8343
|
-
// */
|
|
8344
|
-
// if (self.chartConfiguration.textAlwaysHorizontal) {
|
|
8345
|
-
// return (
|
|
8346
|
-
// 'translate(' + xSubgroup(d.key) + ',' + (y(d.value) - 3) + ')'
|
|
8347
|
-
// );
|
|
8348
|
-
// }
|
|
8349
|
-
// /**
|
|
8350
|
-
// * rotate texts having more than one digits
|
|
8351
|
-
// */
|
|
8352
|
-
// // if (d.value > 9)
|
|
8353
|
-
// if (!isNaN(tempScale(d.key)))
|
|
8354
|
-
// return (
|
|
8355
|
-
// 'translate(' +
|
|
8356
|
-
// (tempScale(d.key) + tempScale.bandwidth() * 0.55) +
|
|
8357
|
-
// ',' +
|
|
8358
|
-
// (y(0) - 10) +
|
|
8359
|
-
// ') rotate(270)'
|
|
8360
|
-
// );
|
|
8361
|
-
// return 'translate(0,0)';
|
|
8362
|
-
// // else
|
|
8363
|
-
// // return (
|
|
8364
|
-
// // 'translate(' +
|
|
8365
|
-
// // (tempScale(d.key) + tempScale.bandwidth() / 2) +
|
|
8366
|
-
// // ',' +
|
|
8367
|
-
// // y(0) +
|
|
8368
|
-
// // ')'
|
|
8369
|
-
// // );
|
|
8370
|
-
// })
|
|
8371
|
-
// .on('click', function (d) {
|
|
8372
|
-
// if (
|
|
8373
|
-
// !metaData.barWithoutClick ||
|
|
8374
|
-
// !metaData.barWithoutClick.length ||
|
|
8375
|
-
// (!metaData.barWithoutClick.includes(d?.name) &&
|
|
8376
|
-
// !metaData.barWithoutClick.includes(d?.key))
|
|
8377
|
-
// )
|
|
8378
|
-
// self.handleClick(d);
|
|
8379
|
-
// });
|
|
8380
|
-
// if (!isria) {
|
|
8381
|
-
// state
|
|
8382
|
-
// .selectAll('.lib-data-labels-weeklycharts')
|
|
8383
|
-
// .on('mouseout', handleMouseOut)
|
|
8384
|
-
// .on('mouseover', handleMouseOver);
|
|
8385
|
-
// }
|
|
8386
|
-
// }
|
|
8387
|
-
// if (this.chartConfiguration.displayTitleOnTop || (
|
|
8388
|
-
// this.chartConfiguration.textsOnBar == undefined &&
|
|
8389
|
-
// this.chartConfiguration.displayTitleOnTop == undefined
|
|
8390
|
-
// )) {
|
|
8391
|
-
// if (!isria) {
|
|
8392
|
-
// state
|
|
8393
|
-
// .selectAll('rect')
|
|
8394
|
-
// .on('mouseout', handleMouseOut)
|
|
8395
|
-
// .on('mouseover', handleMouseOver);
|
|
8396
|
-
// }
|
|
8397
|
-
// }
|
|
8398
|
-
// function handleMouseOver(d, i) {
|
|
8399
|
-
// svg.selectAll('.lib-verticalstack-title-ontop').remove();
|
|
8400
|
-
// svg
|
|
8401
|
-
// .append('foreignObject')
|
|
8402
|
-
// .attr('x', function () {
|
|
8403
|
-
// // ...existing code for tempScale calculation...
|
|
8404
|
-
// var elementsCounter;
|
|
8405
|
-
// data.map((indiv: any) => {
|
|
8406
|
-
// if (indiv.name == d.name) {
|
|
8407
|
-
// let keys = Object.keys(indiv).filter((temp, i) => i != 0);
|
|
8408
|
-
// elementsCounter = keys.length;
|
|
8409
|
-
// tempScale = d3.scaleBand().domain(keys).range([0, x.bandwidth()]);
|
|
8410
|
-
// if (x.bandwidth() > 100) {
|
|
8411
|
-
// if (self.chartData.data.length == 1) {
|
|
8412
|
-
// if (Object.keys(self.chartData.data[0]).length == 2) {
|
|
8413
|
-
// tempScale.range([
|
|
8414
|
-
// 0 + (x.bandwidth() - 200) / 2,
|
|
8415
|
-
// x.bandwidth() - (x.bandwidth() - 200) / 2,
|
|
8416
|
-
// ]);
|
|
8417
|
-
// } else
|
|
8418
|
-
// tempScale.range([
|
|
8419
|
-
// 0 + (x.bandwidth() - 300) / 2,
|
|
8420
|
-
// x.bandwidth() - (x.bandwidth() - 300) / 2,
|
|
8421
|
-
// ]);
|
|
8422
|
-
// } else
|
|
8423
|
-
// tempScale.range([
|
|
8424
|
-
// 0 + (x.bandwidth() - 125) / 2,
|
|
8425
|
-
// x.bandwidth() - (x.bandwidth() - 125) / 2,
|
|
8426
|
-
// ]);
|
|
8427
|
-
// }
|
|
8428
|
-
// }
|
|
8429
|
-
// });
|
|
8430
|
-
// if (metaData.hasDrillDown) {
|
|
8431
|
-
// if (tempScale.bandwidth() + leftAndRightSpaces * 2 > 180) {
|
|
8432
|
-
// return (
|
|
8433
|
-
// x(d.name) + tempScale(d.key) + tempScale.bandwidth() / 2 - 90
|
|
8434
|
-
// );
|
|
8435
|
-
// }
|
|
8436
|
-
// return (
|
|
8437
|
-
// x(d.name) +
|
|
8438
|
-
// tempScale(d.key) -
|
|
8439
|
-
// (tempScale.bandwidth() + leftAndRightSpaces * 2) / 2 +
|
|
8440
|
-
// tempScale.bandwidth() / 2
|
|
8441
|
-
// );
|
|
8442
|
-
// } else return x(d.name) + tempScale(d.key) - (tempScale.bandwidth() + leftAndRightSpaces * 2) / 2 + tempScale.bandwidth() / 2;
|
|
8443
|
-
// })
|
|
8444
|
-
// .attr('class', 'lib-verticalstack-title-ontop')
|
|
8445
|
-
// .attr('y', function () {
|
|
8446
|
-
// return y(d.value) - 3 - 40 - 10;
|
|
8447
|
-
// })
|
|
8448
|
-
// .attr('dy', function () {
|
|
8449
|
-
// return d.class;
|
|
8450
|
-
// })
|
|
8451
|
-
// .attr('width', function () {
|
|
8452
|
-
// data.map((indiv: any) => {
|
|
8453
|
-
// if (indiv.name == d.name) {
|
|
8454
|
-
// let keys = Object.keys(indiv).filter((temp, i) => i != 0);
|
|
8455
|
-
// tempScale = d3.scaleBand().domain(keys).range([0, x.bandwidth()]);
|
|
8456
|
-
// if (x.bandwidth() > 100) {
|
|
8457
|
-
// if (self.chartData.data.length == 1) {
|
|
8458
|
-
// if (Object.keys(self.chartData.data[0]).length == 2) {
|
|
8459
|
-
// tempScale.range([
|
|
8460
|
-
// 0 + (x.bandwidth() - 200) / 2,
|
|
8461
|
-
// x.bandwidth() - (x.bandwidth() - 200) / 2,
|
|
8462
|
-
// ]);
|
|
8463
|
-
// } else
|
|
8464
|
-
// tempScale.range([
|
|
8465
|
-
// 0 + (x.bandwidth() - 300) / 2,
|
|
8466
|
-
// x.bandwidth() - (x.bandwidth() - 300) / 2,
|
|
8467
|
-
// ]);
|
|
8468
|
-
// } else
|
|
8469
|
-
// tempScale.range([
|
|
8470
|
-
// 0 + (x.bandwidth() - 125) / 2,
|
|
8471
|
-
// x.bandwidth() - (x.bandwidth() - 125) / 2,
|
|
8472
|
-
// ]);
|
|
8473
|
-
// }
|
|
8474
|
-
// }
|
|
8475
|
-
// });
|
|
8476
|
-
// if (metaData.hasDrillDown) {
|
|
8477
|
-
// if (tempScale.bandwidth() + leftAndRightSpaces * 2 > 180) {
|
|
8478
|
-
// return '180px';
|
|
8479
|
-
// }
|
|
8480
|
-
// return tempScale.bandwidth() + leftAndRightSpaces * 2;
|
|
8481
|
-
// } else return tempScale.bandwidth() + leftAndRightSpaces * 2;
|
|
8482
|
-
// })
|
|
8483
|
-
// .attr('height', 50)
|
|
8484
|
-
// .append('xhtml:div')
|
|
8485
|
-
// .attr('class', 'title')
|
|
8486
|
-
// .style('z-index', 99)
|
|
8487
|
-
// .html(function () {
|
|
8488
|
-
// let barLabel = d.key;
|
|
8489
|
-
// let dataType = metaData.dataType ? metaData.dataType : '';
|
|
8490
|
-
// let value = d.value;
|
|
8491
|
-
// let desiredText =
|
|
8492
|
-
// '<span class="title-bar-name">' + barLabel + '</span>';
|
|
8493
|
-
// desiredText +=
|
|
8494
|
-
// '<span class="title-bar-value"><span>' +
|
|
8495
|
-
// value +
|
|
8496
|
-
// '</span>' +
|
|
8497
|
-
// dataType +
|
|
8498
|
-
// '</span>';
|
|
8499
|
-
// return desiredText;
|
|
8500
|
-
// });
|
|
8501
|
-
// }
|
|
8502
|
-
// function handleMouseOut(d, i) {
|
|
8503
|
-
// svg.selectAll('.lib-verticalstack-title-ontop').remove();
|
|
8504
|
-
// }
|
|
8505
|
-
// svg
|
|
8506
|
-
// .append('g')
|
|
8507
|
-
// .attr('class', 'x2 axis2')
|
|
8508
|
-
// .attr('transform', 'translate(0,' + height + ')')
|
|
8509
|
-
// .style('color', 'var(--chart-axis-color, #000)') // Use CSS variable instead of hardcoded #000
|
|
8510
|
-
// .call(d3.axisBottom(xScaleFromOrigin).tickSize(0))
|
|
8511
|
-
// .call((g) => g.select('.domain').attr('fill', 'none'));
|
|
8512
|
-
// svg.selectAll('g.x2.axis2 g.tick text').style('display', 'none');
|
|
8513
|
-
// svg
|
|
8514
|
-
// .append('g')
|
|
8515
|
-
// .attr('class', 'lib-stacked-y-axis-text yaxis-dashed')
|
|
8516
|
-
// .attr('style', self.chartConfiguration.yAxisCustomTextStyles)
|
|
8517
|
-
// .attr('transform', 'translate(0,0)')
|
|
8518
|
-
// .call(y)
|
|
8519
|
-
// .style('display', 'none');
|
|
8520
|
-
// svgYAxisLeft
|
|
8521
|
-
// .append('g')
|
|
8522
|
-
// .append('g')
|
|
8523
|
-
// .attr('class', 'lib-yaxis-labels-texts-drilldown yaxis-dashed')
|
|
8524
|
-
// .attr('style', self.chartConfiguration.yAxisCustomTextStyles)
|
|
8525
|
-
// .attr('transform', 'translate(0,0)')
|
|
8526
|
-
// .call(
|
|
8527
|
-
// d3
|
|
8528
|
-
// .axisLeft(y)
|
|
8529
|
-
// .tickSize(0)
|
|
8530
|
-
// .ticks(self.chartConfiguration.numberOfYTicks)
|
|
8531
|
-
// .tickFormat(function (d) {
|
|
8532
|
-
// const formatted = self.chartConfiguration.yAxisLabelFomatter
|
|
8533
|
-
// ? self.chartConfiguration.yAxisLabelFomatter(d)
|
|
8534
|
-
// : d;
|
|
8535
|
-
// return formatted >= 1000 ? formatted / 1000 + 'k' : formatted;
|
|
8536
|
-
// })
|
|
8537
|
-
// )
|
|
8538
|
-
// .call((g) => {
|
|
8539
|
-
// // Style the domain line for theme support
|
|
8540
|
-
// g.select('.domain')
|
|
8541
|
-
// .style('stroke', 'var(--chart-domain-color, #000000)')
|
|
8542
|
-
// .style('stroke-width', '1px');
|
|
8543
|
-
// })
|
|
8544
|
-
// .selectAll('text')
|
|
8545
|
-
// .style('fill', 'var(--chart-text-color)');
|
|
8546
|
-
// svgYAxisRight
|
|
8547
|
-
// .append('g')
|
|
8548
|
-
// .attr('class', 'lib-yaxis-labels-texts-drilldown yaxis-dashed')
|
|
8549
|
-
// .attr('style', self.chartConfiguration.yAxisCustomTextStyles)
|
|
8550
|
-
// .attr('transform', 'translate(0,0)')
|
|
8551
|
-
// .call(y)
|
|
8552
|
-
// .style('display', 'none');
|
|
8553
|
-
// /**
|
|
8554
|
-
// * hide x axis labels
|
|
8555
|
-
// * config is there for future use
|
|
8556
|
-
// * used by weekly charts
|
|
8557
|
-
// */
|
|
8558
|
-
// if (
|
|
8559
|
-
// this.chartConfiguration.isXaxisLabelHidden != undefined &&
|
|
8560
|
-
// this.chartConfiguration.isXaxisLabelHidden
|
|
8561
|
-
// ) {
|
|
8562
|
-
// d3.selectAll('g.lib-line-x-axis-text > g > text').attr(
|
|
8563
|
-
// 'class',
|
|
8564
|
-
// 'lib-display-hidden'
|
|
8565
|
-
// );
|
|
8566
|
-
// }
|
|
8567
|
-
// /**
|
|
8568
|
-
// * hide y axis labels
|
|
8569
|
-
// * used by weekly charts
|
|
8570
|
-
// */
|
|
8571
|
-
// if (
|
|
8572
|
-
// this.chartConfiguration.isYaxisLabelHidden != undefined &&
|
|
8573
|
-
// this.chartConfiguration.isYaxisLabelHidden
|
|
8574
|
-
// ) {
|
|
8575
|
-
// d3.selectAll('.yaxis-dashed > g > text').attr(
|
|
8576
|
-
// 'class',
|
|
8577
|
-
// 'lib-display-hidden'
|
|
8578
|
-
// );
|
|
8579
|
-
// }
|
|
8580
|
-
// /**
|
|
8581
|
-
// * hide y axis labels
|
|
8582
|
-
// * config is there for future use
|
|
8583
|
-
// */
|
|
8584
|
-
// if (
|
|
8585
|
-
// this.chartConfiguration.isYaxisHidden != undefined &&
|
|
8586
|
-
// this.chartConfiguration.isYaxisHidden
|
|
8587
|
-
// ) {
|
|
8588
|
-
// d3.selectAll('.yaxis-dashed').attr('class', 'lib-display-hidden');
|
|
8589
|
-
// }
|
|
8590
|
-
// /**
|
|
8591
|
-
// * dashed y axis
|
|
8592
|
-
// * used by weekly charts
|
|
8593
|
-
// */
|
|
8594
|
-
// if (
|
|
8595
|
-
// this.chartConfiguration.isYaxisDashed != undefined &&
|
|
8596
|
-
// this.chartConfiguration.isYaxisDashed
|
|
8597
|
-
// ) {
|
|
8598
|
-
// d3.selectAll('.yaxis-dashed')
|
|
8599
|
-
// .style('stroke-dasharray', '5 5')
|
|
8600
|
-
// .style('color', 'var(--chart-axis-color, #999999)'); // Use CSS variable
|
|
8601
|
-
// }
|
|
8602
|
-
// if (lineData != null) {
|
|
8603
|
-
// if (lineData && self.chartConfiguration.showLineChartAxis) {
|
|
8604
|
-
// svgYAxisRight
|
|
8605
|
-
// .append('g')
|
|
8606
|
-
// .attr('class', 'lib-stacked-y-axis-text1')
|
|
8607
|
-
// .attr('style', self.chartConfiguration.yAxisCustomTextStyles)
|
|
8608
|
-
// .attr('transform', 'translate(' + 0 + ',0)')
|
|
8609
|
-
// .call(yLineAxis);
|
|
8610
|
-
// }
|
|
8611
|
-
// }
|
|
8612
|
-
// /**
|
|
8613
|
-
// * used to display y label
|
|
8614
|
-
// */
|
|
8615
|
-
// // if (this.isZoomedOut) {
|
|
8616
|
-
// // svg
|
|
8617
|
-
// // .selectAll('.lib-xaxis-labels-texts-drilldown')
|
|
8618
|
-
// // .attr('class', 'lib-display-hidden');
|
|
8619
|
-
// // }
|
|
8620
|
-
// if (this.isZoomedOut) {
|
|
8621
|
-
// svg
|
|
8622
|
-
// .selectAll('.lib-xaxis-labels-texts-drilldown')
|
|
8623
|
-
// .each((d, i, nodes) => {
|
|
8624
|
-
// const text = d3.select(nodes[i]);
|
|
8625
|
-
// const label = text.text();
|
|
8626
|
-
// if (label.indexOf('\n') > -1) {
|
|
8627
|
-
// const lines = label.split('\n');
|
|
8628
|
-
// text.text(null);
|
|
8629
|
-
// lines.forEach((line, idx) => {
|
|
8630
|
-
// text.append('tspan')
|
|
8631
|
-
// .text(line)
|
|
8632
|
-
// .attr('x', 0)
|
|
8633
|
-
// .attr('dy', idx === 0 ? '1em' : '1.1em');
|
|
8634
|
-
// });
|
|
8635
|
-
// } else {
|
|
8636
|
-
// const words = label.split(' ');
|
|
8637
|
-
// text.text(null);
|
|
8638
|
-
// words.forEach((word, index) => {
|
|
8639
|
-
// text.append('tspan').text(word);
|
|
8640
|
-
// });
|
|
8641
|
-
// }
|
|
8642
|
-
// })
|
|
8643
|
-
// .style('fill', 'var(--chart-text-color)')
|
|
8644
|
-
// .attr('transform', null);
|
|
8645
|
-
// svg
|
|
8646
|
-
// .select('.x-axis')
|
|
8647
|
-
// .attr('transform', `translate(0, ${height - margin.bottom + 10})`);
|
|
8648
|
-
// }
|
|
8649
|
-
// /**
|
|
8650
|
-
// * used to write y labels based on configuration
|
|
8651
|
-
// */
|
|
8652
|
-
// if (metaData.yLabel) {
|
|
8653
|
-
// const yPosition = isria ? 0 - margin.left / 2 - 30 : 0 - margin.left / 2 - 40;
|
|
8654
|
-
// svgYAxisLeft
|
|
8655
|
-
// .append('text')
|
|
8656
|
-
// .attr('class', 'lib-axis-group-label font-size-1')
|
|
8657
|
-
// .attr('style', self.chartConfiguration.yAxisCustomlabelStyles)
|
|
8658
|
-
// .attr('transform', 'rotate(-90)')
|
|
8659
|
-
// .attr('y', yPosition)
|
|
8660
|
-
// .attr('x', 0 - height / 2)
|
|
8661
|
-
// .attr('dy', '1em')
|
|
8662
|
-
// .style('text-anchor', 'middle')
|
|
8663
|
-
// .attr('fill', 'var(--chart-text-color)');
|
|
8664
|
-
// if (this.chartConfiguration.isMultiChartGridLine === undefined) {
|
|
8665
|
-
// svgYAxisLeft
|
|
8666
|
-
// .selectAll('.lib-axis-group-label')
|
|
8667
|
-
// .style('font-size', 'smaller')
|
|
8668
|
-
// .text(metaData.yLabel);
|
|
8669
|
-
// } else {
|
|
8670
|
-
// svg
|
|
8671
|
-
// .selectAll('.lib-axis-group-label')
|
|
8672
|
-
// .attr('class', 'lib-ylabel-weeklyCharts')
|
|
8673
|
-
// .text(metaData.yLabel.toLowerCase());
|
|
8674
|
-
// }
|
|
8675
|
-
// }
|
|
8676
|
-
// if (this.chartData.targetLineData) {
|
|
8677
|
-
// const yZero = y(this.chartData.targetLineData.target);
|
|
8678
|
-
// svg
|
|
8679
|
-
// .append('line')
|
|
8680
|
-
// .attr('x1', 0)
|
|
8681
|
-
// .attr('x2', width)
|
|
8682
|
-
// .attr('y1', yZero)
|
|
8683
|
-
// .attr('y2', yZero)
|
|
8684
|
-
// .style('stroke-dasharray', '5 5')
|
|
8685
|
-
// .style('stroke', this.chartData.targetLineData.color);
|
|
8686
|
-
// // svgYAxisRight
|
|
8687
|
-
// // .append('line')
|
|
8688
|
-
// // .attr('x1', 0)
|
|
8689
|
-
// // .attr('x2', rightSvgWidth)
|
|
8690
|
-
// // .attr('y1', yZero)
|
|
8691
|
-
// // .attr('y2', yZero)
|
|
8692
|
-
// // .style('stroke', this.chartData.targetLineData.color);
|
|
8693
|
-
// svgYAxisRight
|
|
8694
|
-
// .append('foreignObject')
|
|
8695
|
-
// .attr('transform', 'translate(' + 0 + ',' + (yZero - 30) + ')')
|
|
8696
|
-
// .attr('width', rightSvgWidth)
|
|
8697
|
-
// .attr('height', 50)
|
|
8698
|
-
// .append('xhtml:div')
|
|
8699
|
-
// .attr('class', 'target-display')
|
|
8700
|
-
// .style('color', 'var(--chart-text-color)')
|
|
8701
|
-
// .html(function () {
|
|
8702
|
-
// let dataTypeTemp = '';
|
|
8703
|
-
// let targetLineName = 'target';
|
|
8704
|
-
// if (metaData.dataType) {
|
|
8705
|
-
// dataTypeTemp = metaData.dataType;
|
|
8706
|
-
// }
|
|
8707
|
-
// if (
|
|
8708
|
-
// self.chartData.targetLineData &&
|
|
8709
|
-
// self.chartData.targetLineData.targetName
|
|
8710
|
-
// ) {
|
|
8711
|
-
// targetLineName = self.chartData.targetLineData.targetName;
|
|
8712
|
-
// }
|
|
8713
|
-
// return (
|
|
8714
|
-
// `<div>${targetLineName}</div>` +
|
|
8715
|
-
// '<div>' +
|
|
8716
|
-
// self.chartData.targetLineData.target +
|
|
8717
|
-
// '' +
|
|
8718
|
-
// dataTypeTemp +
|
|
8719
|
-
// '</div>'
|
|
8720
|
-
// );
|
|
8721
|
-
// });
|
|
8722
|
-
// }
|
|
8723
|
-
// if (this.chartConfiguration.isDrilldownChart) {
|
|
8724
|
-
// /**
|
|
8725
|
-
// * used by drilldown charts
|
|
8726
|
-
// */
|
|
8727
|
-
// // svg
|
|
8728
|
-
// // .selectAll('.lib-axis-group-label')
|
|
8729
|
-
// // .attr('class', 'lib-ylabel-drilldowncharts')
|
|
8730
|
-
// // .text(metaData.yLabel.toLowerCase());
|
|
8731
|
-
// svg.selectAll('g.x1.axis1 g.tick line').style('display', 'none');
|
|
8732
|
-
// }
|
|
8733
|
-
// if (metaData.xLabel) {
|
|
8734
|
-
// function isAcronym(label) {
|
|
8735
|
-
// return (
|
|
8736
|
-
// (label.length <= 4 && /^[A-Z]+$/.test(label)) ||
|
|
8737
|
-
// (label === label.toUpperCase() && /[A-Z]/.test(label))
|
|
8738
|
-
// );
|
|
8739
|
-
// }
|
|
8740
|
-
// const xLabelText = metaData.xLabel;
|
|
8741
|
-
// const isAcr = isAcronym(xLabelText.replace(/[^A-Za-z]/g, ''));
|
|
8742
|
-
// const xPosition = isria ? (height + margin.top + margin.bottom) : (height + margin.top + margin.bottom + 40);
|
|
8743
|
-
// svg
|
|
8744
|
-
// .append('text')
|
|
8745
|
-
// .attr('class', function () {
|
|
8746
|
-
// let baseClass = 'lib-axis-group-label font-size-1';
|
|
8747
|
-
// if (self.chartConfiguration.isDrilldownChart)
|
|
8748
|
-
// return baseClass + ' lib-xlabel-drilldowncharts';
|
|
8749
|
-
// if (self.chartConfiguration.isMultiChartGridLine != undefined)
|
|
8750
|
-
// return baseClass + ' lib-xlabel-weeklyCharts';
|
|
8751
|
-
// return baseClass + ' lib-axis-waterfall-label';
|
|
8752
|
-
// })
|
|
8753
|
-
// .attr('style', self.chartConfiguration.xAxisCustomlabelStyles)
|
|
8754
|
-
// .attr(
|
|
8755
|
-
// 'transform',
|
|
8756
|
-
// 'translate(' + width / 2 + ' ,' + xPosition + ')'
|
|
8757
|
-
// )
|
|
8758
|
-
// .style('text-anchor', 'middle')
|
|
8759
|
-
// .style('fill', 'var(--chart-text-color)')
|
|
8760
|
-
// .text(isAcr ? xLabelText.toUpperCase() : xLabelText.toLowerCase())
|
|
8761
|
-
// .style('text-transform', isAcr ? 'none' : 'capitalize');
|
|
8762
|
-
// }
|
|
8763
|
-
// if (metaData.lineyLabel) {
|
|
8764
|
-
// svgYAxisRight
|
|
8765
|
-
// .append('text')
|
|
8766
|
-
// .attr('class', 'lib-axis-group-label lib-line-axis')
|
|
8767
|
-
// .attr('fill', 'var(--chart-text-color)')
|
|
8768
|
-
// .attr('style', self.chartConfiguration.yAxisCustomlabelStyles)
|
|
8769
|
-
// .attr('transform', 'translate(0,0) rotate(90)')
|
|
8770
|
-
// .attr('y', 0 - 100)
|
|
8771
|
-
// .attr('x', 0 + 100)
|
|
8772
|
-
// .attr('dy', '5em')
|
|
8773
|
-
// .style('text-anchor', 'middle')
|
|
8774
|
-
// .style('font-size', 'smaller')
|
|
8775
|
-
// .text(metaData.lineyLabel);
|
|
8776
|
-
// }
|
|
8777
|
-
// if (lineData) {
|
|
8778
|
-
// svg
|
|
8779
|
-
// .append('path')
|
|
8780
|
-
// .datum(lineData)
|
|
8781
|
-
// .attr('fill', 'none')
|
|
8782
|
-
// .attr('stroke', self.chartConfiguration.lineGraphColor)
|
|
8783
|
-
// .attr('stroke-width', 1.5)
|
|
8784
|
-
// .attr(
|
|
8785
|
-
// 'd',
|
|
8786
|
-
// d3
|
|
8787
|
-
// .line()
|
|
8788
|
-
// .x(function (d) {
|
|
8789
|
-
// return x(d.name) + x.bandwidth() / 2;
|
|
8790
|
-
// })
|
|
8791
|
-
// .y(function (d) {
|
|
8792
|
-
// return lineYscale(d.value);
|
|
8793
|
-
// })
|
|
8794
|
-
// );
|
|
8795
|
-
// var dot = svg
|
|
8796
|
-
// .selectAll('myCircles')
|
|
8797
|
-
// .data(lineData)
|
|
8798
|
-
// .enter()
|
|
8799
|
-
// .append('g')
|
|
8800
|
-
// .on('click', function (d) {
|
|
8801
|
-
// if (
|
|
8802
|
-
// !metaData.barWithoutClick ||
|
|
8803
|
-
// !metaData.barWithoutClick.length ||
|
|
8804
|
-
// (!metaData.barWithoutClick.includes(d?.name) &&
|
|
8805
|
-
// !metaData.barWithoutClick.includes(d?.key))
|
|
8806
|
-
// )
|
|
8807
|
-
// self.handleClick(d);
|
|
8808
|
-
// });
|
|
8809
|
-
// dot
|
|
8810
|
-
// .append('circle')
|
|
8811
|
-
// .attr('fill', function (d) {
|
|
8812
|
-
// return self.chartConfiguration.lineGraphColor;
|
|
8813
|
-
// })
|
|
8814
|
-
// .attr('stroke', 'none')
|
|
8815
|
-
// .attr('cx', function (d) {
|
|
8816
|
-
// return x(d.name) + x.bandwidth() / 2;
|
|
8817
|
-
// })
|
|
8818
|
-
// .attr('cy', function (d) {
|
|
8819
|
-
// return lineYscale(d.value);
|
|
8820
|
-
// })
|
|
8821
|
-
// .style('cursor', () =>
|
|
8822
|
-
// self.chartData.metaData.hasDrillDown ? 'pointer' : 'default'
|
|
8823
|
-
// )
|
|
8824
|
-
// .attr('r', 3);
|
|
8825
|
-
// if (self.chartConfiguration.lineGraphColor) {
|
|
8826
|
-
// dot
|
|
8827
|
-
// .append('text')
|
|
8828
|
-
// .attr('class', 'dot')
|
|
8829
|
-
// .attr('fill', 'var(--chart-text-color)')
|
|
8830
|
-
// .attr('color', self.chartConfiguration.lineGraphColor)
|
|
8831
|
-
// .attr('style', 'font-size: ' + '.85em')
|
|
8832
|
-
// .attr('x', function (d, i) {
|
|
8833
|
-
// return x(d.name) + x.bandwidth() / 2;
|
|
8834
|
-
// })
|
|
8835
|
-
// .attr('y', function (d) {
|
|
8836
|
-
// return lineYscale(d.value);
|
|
8837
|
-
// })
|
|
8838
|
-
// .attr('dy', '-1em')
|
|
8839
|
-
// .text(function (d) {
|
|
8840
|
-
// return self.chartConfiguration.labelFormatter(d.value);
|
|
8841
|
-
// });
|
|
8842
|
-
// }
|
|
8843
|
-
// }
|
|
8844
|
-
// }
|
|
8845
7628
|
initializegroupChart() {
|
|
8846
7629
|
// ==================== VARIABLE DECLARATIONS ====================
|
|
8847
7630
|
const self = this;
|
|
@@ -8952,7 +7735,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8952
7735
|
.domain(groups)
|
|
8953
7736
|
.range([0, width - RIGHT_SVG_WIDTH]);
|
|
8954
7737
|
// ==================== X-AXIS RENDERING ====================
|
|
8955
|
-
this.renderXAxis(svg, x, height, metaData, subgroups, data, SHORT_TICK_LENGTH_BG, LONG_TICK_LENGTH_BG, self, isria, isMobile);
|
|
7738
|
+
this.renderXAxis(svg, x, height, metaData, subgroups, data, SHORT_TICK_LENGTH_BG, LONG_TICK_LENGTH_BG, self, isria, isMobile, isTablet);
|
|
8956
7739
|
// ==================== Y-AXIS SETUP ====================
|
|
8957
7740
|
const y = d3.scaleLinear().rangeRound([height, 0]);
|
|
8958
7741
|
let maxValue = this.calculateMaxValue(data, keyList);
|
|
@@ -9003,13 +7786,18 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9003
7786
|
}
|
|
9004
7787
|
}
|
|
9005
7788
|
// ==================== HELPER METHODS ====================
|
|
9006
|
-
renderXAxis(svg, x, height, metaData, subgroups, data, shortTickLengthBg, longTickLengthBg, self, isria, isMobile) {
|
|
7789
|
+
renderXAxis(svg, x, height, metaData, subgroups, data, shortTickLengthBg, longTickLengthBg, self, isria, isMobile, isTablet) {
|
|
9007
7790
|
let alternate_text = false;
|
|
9008
7791
|
if (this.chartConfiguration.isMultiChartGridLine === undefined) {
|
|
9009
7792
|
// Normal ticks for dashboard charts
|
|
7793
|
+
// Dynamically adjust Y translation for mobile
|
|
7794
|
+
let translateY = height;
|
|
7795
|
+
if (isMobile) {
|
|
7796
|
+
translateY = height + 5; // Add extra space at the top for mobile
|
|
7797
|
+
}
|
|
9010
7798
|
svg.append('g')
|
|
9011
7799
|
.attr('class', 'x1 axis1')
|
|
9012
|
-
.attr('transform', `translate(0,${
|
|
7800
|
+
.attr('transform', `translate(0,${translateY})`)
|
|
9013
7801
|
.call(d3.axisBottom(x))
|
|
9014
7802
|
.call((g) => g.select('.domain').remove());
|
|
9015
7803
|
svg.selectAll('g.x1.axis1 g.tick line').remove();
|
|
@@ -9069,7 +7857,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9069
7857
|
.attr('x', 5)
|
|
9070
7858
|
.style('text-anchor', 'middle');
|
|
9071
7859
|
}
|
|
9072
|
-
// Mobile override - check for single-group date charts first
|
|
7860
|
+
// Mobile/tablet override - check for single-group date charts first
|
|
9073
7861
|
if (isMobile) {
|
|
9074
7862
|
const textNodes = svg.selectAll('g.x1.axis1 g.tick text');
|
|
9075
7863
|
const groupsCount = data.length || 0;
|
|
@@ -9083,8 +7871,14 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9083
7871
|
hasDateValues = true;
|
|
9084
7872
|
}
|
|
9085
7873
|
});
|
|
9086
|
-
|
|
9087
|
-
|
|
7874
|
+
// Count unique x-axis labels
|
|
7875
|
+
const uniqueLabels = new Set();
|
|
7876
|
+
textNodes.each(function (d) {
|
|
7877
|
+
uniqueLabels.add(d);
|
|
7878
|
+
});
|
|
7879
|
+
const labelCount = uniqueLabels.size;
|
|
7880
|
+
if (hasDateValues && labelCount <= 3) {
|
|
7881
|
+
// For 3 or fewer labels, keep horizontal display
|
|
9088
7882
|
textNodes
|
|
9089
7883
|
.style('writing-mode', 'horizontal-tb') // Explicitly set horizontal
|
|
9090
7884
|
.classed('mobile-xaxis-override', false) // Remove vertical class
|
|
@@ -9094,19 +7888,40 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9094
7888
|
.attr('dx', '0') // Reset any x offset
|
|
9095
7889
|
.attr('dy', '0'); // Reset any y offset
|
|
9096
7890
|
}
|
|
7891
|
+
else if (labelCount > 3) {
|
|
7892
|
+
// For more than 3 labels, use vertical alignment
|
|
7893
|
+
textNodes
|
|
7894
|
+
.style('writing-mode', 'sideways-lr') // Vertical text
|
|
7895
|
+
.classed('mobile-xaxis-override', true) // Add vertical class
|
|
7896
|
+
.attr('text-anchor', 'middle') // Center align
|
|
7897
|
+
.attr('y', 30) // Adjust vertical position
|
|
7898
|
+
.attr('x', 0); // Reset x position
|
|
7899
|
+
}
|
|
9097
7900
|
else if (!this.isHeaderVisible) {
|
|
9098
7901
|
// Default mobile behavior for non-date or multi-group
|
|
9099
7902
|
textNodes.classed('mobile-xaxis-override', true);
|
|
9100
7903
|
}
|
|
9101
|
-
|
|
9102
|
-
|
|
9103
|
-
|
|
9104
|
-
|
|
9105
|
-
|
|
9106
|
-
|
|
9107
|
-
|
|
9108
|
-
|
|
9109
|
-
|
|
7904
|
+
}
|
|
7905
|
+
// Tablet: if any tick text contains exactly 3 tspans, move the 3rd tspan to its own new line
|
|
7906
|
+
if (isTablet) {
|
|
7907
|
+
const tickTexts = svg.selectAll('g.x1.axis1 g.tick text');
|
|
7908
|
+
tickTexts.each(function () {
|
|
7909
|
+
const textEl = d3.select(this);
|
|
7910
|
+
const tspans = textEl.selectAll('tspan').nodes();
|
|
7911
|
+
try {
|
|
7912
|
+
if (tspans && tspans.length === 3) {
|
|
7913
|
+
// ensure each tspan has x=0 and proper dy to stack as three lines
|
|
7914
|
+
d3.select(tspans[0]).attr('x', 0).attr('dy', '0em');
|
|
7915
|
+
d3.select(tspans[1]).attr('x', 0).attr('dy', '1.1em');
|
|
7916
|
+
d3.select(tspans[2]).attr('x', 0).attr('dy', '1.1em');
|
|
7917
|
+
// push the whole label down a bit to avoid overlap with axis
|
|
7918
|
+
textEl.attr('y', 30);
|
|
7919
|
+
}
|
|
7920
|
+
}
|
|
7921
|
+
catch (e) {
|
|
7922
|
+
// ignore any measurement/DOM errors
|
|
7923
|
+
}
|
|
7924
|
+
});
|
|
9110
7925
|
}
|
|
9111
7926
|
}
|
|
9112
7927
|
applyXLabelsOnSameLine(svg, subgroups, data, metaData, self, shortTickLengthBg, isMobile, isria) {
|
|
@@ -9171,15 +7986,49 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9171
7986
|
return baseY;
|
|
9172
7987
|
}
|
|
9173
7988
|
formatXLabelText(d, data, metaData, subgroups, self, isMobile) {
|
|
9174
|
-
//
|
|
7989
|
+
// Check if we're on mobile or tablet
|
|
7990
|
+
const isSmallScreen = window.innerWidth < 992; // Less than 992px (mobile or tablet)
|
|
7991
|
+
// Helper to extract and format week number
|
|
7992
|
+
const extractWeekNumber = (text) => {
|
|
7993
|
+
const match = text.match(/(?:week|wk|w)\s*(\d+)/i);
|
|
7994
|
+
return match ? `W${match[1]}` : null;
|
|
7995
|
+
};
|
|
7996
|
+
// Helper to extract date part
|
|
7997
|
+
const extractDate = (text) => {
|
|
7998
|
+
const match = text.match(/\d{2}[-\/]\d{2}[-\/]\d{2,4}/);
|
|
7999
|
+
return match ? match[0] : null;
|
|
8000
|
+
};
|
|
8001
|
+
// Check if label contains both date and week information
|
|
8002
|
+
const hasDateAndTime = (text) => {
|
|
8003
|
+
const dateMatch = /\d{2,4}[-\/]\d{1,2}[-\/]\d{1,4}/.test(text);
|
|
8004
|
+
const weekMatch = /(?:week|wk|w)\s*\d+/i.test(text);
|
|
8005
|
+
return { isDate: dateMatch, isWeek: weekMatch };
|
|
8006
|
+
};
|
|
8007
|
+
const labelInfo = hasDateAndTime(d);
|
|
8008
|
+
// Mobile handling: format date and week parts
|
|
9175
8009
|
if (isMobile) {
|
|
9176
|
-
|
|
9177
|
-
if (isDateLabel && subgroups && subgroups.length < 3) {
|
|
9178
|
-
// For single-series charts on mobile, show full date labels (no trimming)
|
|
9179
|
-
return d;
|
|
9180
|
-
}
|
|
9181
|
-
// If header is hidden (compact mobile), trim non-date labels as before
|
|
8010
|
+
// If header is hidden (compact mobile)
|
|
9182
8011
|
if (!self.isHeaderVisible) {
|
|
8012
|
+
// If it has both date and week, format appropriately
|
|
8013
|
+
if (labelInfo.isDate && labelInfo.isWeek) {
|
|
8014
|
+
const datePart = extractDate(d);
|
|
8015
|
+
const weekPart = extractWeekNumber(d);
|
|
8016
|
+
if (datePart && weekPart) {
|
|
8017
|
+
return `${datePart}\n${weekPart}`;
|
|
8018
|
+
}
|
|
8019
|
+
}
|
|
8020
|
+
// If it's just a date, return it unchanged
|
|
8021
|
+
if (labelInfo.isDate) {
|
|
8022
|
+
return extractDate(d) || d;
|
|
8023
|
+
}
|
|
8024
|
+
// If it has just week number, format it as W##
|
|
8025
|
+
if (labelInfo.isWeek) {
|
|
8026
|
+
const weekPart = extractWeekNumber(d);
|
|
8027
|
+
if (weekPart) {
|
|
8028
|
+
return weekPart;
|
|
8029
|
+
}
|
|
8030
|
+
}
|
|
8031
|
+
// For non-date labels, trim as before
|
|
9183
8032
|
const firstPart = d.split(/[\s\-]+/)[0];
|
|
9184
8033
|
return firstPart.substring(0, 3).toLowerCase();
|
|
9185
8034
|
}
|
|
@@ -9195,17 +8044,15 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9195
8044
|
if (dateRangeRegex.test(d.trim())) {
|
|
9196
8045
|
return d.trim().replace(dateRangeRegex, (m, d1, d2) => `${d1} - ${d2}`);
|
|
9197
8046
|
}
|
|
9198
|
-
//
|
|
9199
|
-
const isDateLabel = /\d{2,4}[-\/]/.test(d);
|
|
9200
|
-
const isWeekLabel = /week|wk|w\d+/i.test(d);
|
|
8047
|
+
// Handle splitting of multi-part labels
|
|
9201
8048
|
if (subgroups.length > 1 && !self.isZoomedOut && data.length > 8 &&
|
|
9202
|
-
d.indexOf(' ') > -1 && (
|
|
8049
|
+
d.indexOf(' ') > -1 && (labelInfo.isDate || labelInfo.isWeek)) {
|
|
9203
8050
|
const first = d.substring(0, d.indexOf(' '));
|
|
9204
8051
|
const second = d.substring(d.indexOf(' ') + 1).trim();
|
|
9205
8052
|
return `${first}\n${second}`;
|
|
9206
8053
|
}
|
|
9207
8054
|
// Handle date labels in minimized view
|
|
9208
|
-
if (
|
|
8055
|
+
if (labelInfo.isDate) {
|
|
9209
8056
|
if (!self.isHeaderVisible && data.length > 8 && d.indexOf(' ') > -1) {
|
|
9210
8057
|
const first = d.substring(0, d.indexOf(' '));
|
|
9211
8058
|
const second = d.substring(d.indexOf(' ') + 1).trim();
|
|
@@ -9804,7 +8651,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9804
8651
|
// Minimum width per bar group based on device and number of subgroups
|
|
9805
8652
|
const minWidthPerGroup = (() => {
|
|
9806
8653
|
if (subgroupsCount > 2) {
|
|
9807
|
-
return isMobile ?
|
|
8654
|
+
return isMobile ? 100 : isTablet ? 100 : 120; // Wider for multiple subgroups
|
|
9808
8655
|
}
|
|
9809
8656
|
return isMobile ? 40 : isTablet ? 60 : 80; // Normal width for 1-2 subgroups
|
|
9810
8657
|
})();
|