@fluentui/react-charts 9.1.6 → 9.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/CHANGELOG.md +27 -2
  2. package/dist/index.d.ts +64 -5
  3. package/lib/components/AreaChart/AreaChart.js +21 -1
  4. package/lib/components/AreaChart/AreaChart.js.map +1 -1
  5. package/lib/components/CommonComponents/CartesianChart.js +8 -9
  6. package/lib/components/CommonComponents/CartesianChart.js.map +1 -1
  7. package/lib/components/CommonComponents/CartesianChart.types.js.map +1 -1
  8. package/lib/components/CommonComponents/ChartPopover.js +2 -1
  9. package/lib/components/CommonComponents/ChartPopover.js.map +1 -1
  10. package/lib/components/CommonComponents/ChartPopover.types.js.map +1 -1
  11. package/lib/components/CommonComponents/useCartesianChartStyles.styles.js +3 -3
  12. package/lib/components/CommonComponents/useCartesianChartStyles.styles.js.map +1 -1
  13. package/lib/components/CommonComponents/useChartPopoverStyles.styles.js +11 -5
  14. package/lib/components/CommonComponents/useChartPopoverStyles.styles.js.map +1 -1
  15. package/lib/components/DonutChart/Arc/Arc.js +10 -3
  16. package/lib/components/DonutChart/Arc/Arc.js.map +1 -1
  17. package/lib/components/DonutChart/Arc/Arc.types.js.map +1 -1
  18. package/lib/components/DonutChart/Arc/useArcStyles.styles.js +7 -2
  19. package/lib/components/DonutChart/Arc/useArcStyles.styles.js.map +1 -1
  20. package/lib/components/GaugeChart/useGaugeChartStyles.styles.js +2 -6
  21. package/lib/components/GaugeChart/useGaugeChartStyles.styles.js.map +1 -1
  22. package/lib/components/GroupedVerticalBarChart/GroupedVerticalBarChart.js +18 -1
  23. package/lib/components/GroupedVerticalBarChart/GroupedVerticalBarChart.js.map +1 -1
  24. package/lib/components/HeatMapChart/HeatMapChart.js +29 -2
  25. package/lib/components/HeatMapChart/HeatMapChart.js.map +1 -1
  26. package/lib/components/HeatMapChart/HeatMapChart.types.js.map +1 -1
  27. package/lib/components/HeatMapChart/useHeatMapChartStyles.styles.js +7 -2
  28. package/lib/components/HeatMapChart/useHeatMapChartStyles.styles.js.map +1 -1
  29. package/lib/components/HorizontalBarChart/HorizontalBarChart.js +15 -5
  30. package/lib/components/HorizontalBarChart/HorizontalBarChart.js.map +1 -1
  31. package/lib/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.js +4 -1
  32. package/lib/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.js.map +1 -1
  33. package/lib/components/LineChart/LineChart.js +22 -2
  34. package/lib/components/LineChart/LineChart.js.map +1 -1
  35. package/lib/components/SankeyChart/SankeyChart.js +18 -22
  36. package/lib/components/SankeyChart/SankeyChart.js.map +1 -1
  37. package/lib/components/ScatterChart/ScatterChart.js +28 -3
  38. package/lib/components/ScatterChart/ScatterChart.js.map +1 -1
  39. package/lib/components/ScatterChart/useScatterChartStyles.styles.js +1 -1
  40. package/lib/components/ScatterChart/useScatterChartStyles.styles.js.map +1 -1
  41. package/lib/components/VerticalBarChart/VerticalBarChart.js +28 -15
  42. package/lib/components/VerticalBarChart/VerticalBarChart.js.map +1 -1
  43. package/lib/components/VerticalBarChart/VerticalBarChart.types.js.map +1 -1
  44. package/lib/components/VerticalStackedBarChart/VerticalStackedBarChart.js +29 -12
  45. package/lib/components/VerticalStackedBarChart/VerticalStackedBarChart.js.map +1 -1
  46. package/lib/components/VerticalStackedBarChart/VerticalStackedBarChart.types.js.map +1 -1
  47. package/lib/utilities/FocusableTooltipText.js +1 -2
  48. package/lib/utilities/FocusableTooltipText.js.map +1 -1
  49. package/lib/utilities/utilities.js +6 -144
  50. package/lib/utilities/utilities.js.map +1 -1
  51. package/lib-commonjs/components/AreaChart/AreaChart.js +20 -0
  52. package/lib-commonjs/components/AreaChart/AreaChart.js.map +1 -1
  53. package/lib-commonjs/components/CommonComponents/CartesianChart.js +7 -7
  54. package/lib-commonjs/components/CommonComponents/CartesianChart.js.map +1 -1
  55. package/lib-commonjs/components/CommonComponents/CartesianChart.types.js.map +1 -1
  56. package/lib-commonjs/components/CommonComponents/ChartPopover.js +2 -1
  57. package/lib-commonjs/components/CommonComponents/ChartPopover.js.map +1 -1
  58. package/lib-commonjs/components/CommonComponents/ChartPopover.types.js.map +1 -1
  59. package/lib-commonjs/components/CommonComponents/useCartesianChartStyles.styles.js +3 -3
  60. package/lib-commonjs/components/CommonComponents/useCartesianChartStyles.styles.js.map +1 -1
  61. package/lib-commonjs/components/CommonComponents/useChartPopoverStyles.styles.js +14 -5
  62. package/lib-commonjs/components/CommonComponents/useChartPopoverStyles.styles.js.map +1 -1
  63. package/lib-commonjs/components/DonutChart/Arc/Arc.js +10 -3
  64. package/lib-commonjs/components/DonutChart/Arc/Arc.js.map +1 -1
  65. package/lib-commonjs/components/DonutChart/Arc/Arc.types.js.map +1 -1
  66. package/lib-commonjs/components/DonutChart/Arc/useArcStyles.styles.js +10 -2
  67. package/lib-commonjs/components/DonutChart/Arc/useArcStyles.styles.js.map +1 -1
  68. package/lib-commonjs/components/GaugeChart/useGaugeChartStyles.styles.js +0 -14
  69. package/lib-commonjs/components/GaugeChart/useGaugeChartStyles.styles.js.map +1 -1
  70. package/lib-commonjs/components/GroupedVerticalBarChart/GroupedVerticalBarChart.js +17 -0
  71. package/lib-commonjs/components/GroupedVerticalBarChart/GroupedVerticalBarChart.js.map +1 -1
  72. package/lib-commonjs/components/HeatMapChart/HeatMapChart.js +28 -1
  73. package/lib-commonjs/components/HeatMapChart/HeatMapChart.js.map +1 -1
  74. package/lib-commonjs/components/HeatMapChart/HeatMapChart.types.js.map +1 -1
  75. package/lib-commonjs/components/HeatMapChart/useHeatMapChartStyles.styles.js +8 -2
  76. package/lib-commonjs/components/HeatMapChart/useHeatMapChartStyles.styles.js.map +1 -1
  77. package/lib-commonjs/components/HorizontalBarChart/HorizontalBarChart.js +15 -5
  78. package/lib-commonjs/components/HorizontalBarChart/HorizontalBarChart.js.map +1 -1
  79. package/lib-commonjs/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.js +3 -0
  80. package/lib-commonjs/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.js.map +1 -1
  81. package/lib-commonjs/components/LineChart/LineChart.js +21 -1
  82. package/lib-commonjs/components/LineChart/LineChart.js.map +1 -1
  83. package/lib-commonjs/components/SankeyChart/SankeyChart.js +18 -22
  84. package/lib-commonjs/components/SankeyChart/SankeyChart.js.map +1 -1
  85. package/lib-commonjs/components/ScatterChart/ScatterChart.js +26 -1
  86. package/lib-commonjs/components/ScatterChart/ScatterChart.js.map +1 -1
  87. package/lib-commonjs/components/ScatterChart/useScatterChartStyles.styles.js +3 -3
  88. package/lib-commonjs/components/ScatterChart/useScatterChartStyles.styles.js.map +1 -1
  89. package/lib-commonjs/components/VerticalBarChart/VerticalBarChart.js +27 -14
  90. package/lib-commonjs/components/VerticalBarChart/VerticalBarChart.js.map +1 -1
  91. package/lib-commonjs/components/VerticalBarChart/VerticalBarChart.types.js.map +1 -1
  92. package/lib-commonjs/components/VerticalStackedBarChart/VerticalStackedBarChart.js +28 -11
  93. package/lib-commonjs/components/VerticalStackedBarChart/VerticalStackedBarChart.js.map +1 -1
  94. package/lib-commonjs/components/VerticalStackedBarChart/VerticalStackedBarChart.types.js.map +1 -1
  95. package/lib-commonjs/utilities/FocusableTooltipText.js +1 -2
  96. package/lib-commonjs/utilities/FocusableTooltipText.js.map +1 -1
  97. package/lib-commonjs/utilities/utilities.js +11 -132
  98. package/lib-commonjs/utilities/utilities.js.map +1 -1
  99. package/package.json +5 -5
@@ -1 +1 @@
1
- {"version":3,"sources":["ScatterChart.tsx"],"sourcesContent":["import * as React from 'react';\nimport { ScatterChartProps } from './ScatterChart.types';\nimport { useScatterChartStyles_unstable } from './useScatterChartStyles.styles';\nimport { Axis as D3Axis } from 'd3-axis';\nimport { select as d3Select } from 'd3-selection';\nimport { Legend, Legends } from '../Legends/index';\nimport { max as d3Max, min as d3Min } from 'd3-array';\nimport { useId } from '@fluentui/react-utilities';\nimport { areArraysEqual, find } from '../../utilities/index';\nimport {\n AccessibilityProps,\n CartesianChart,\n ChildProps,\n LineChartPoints,\n CustomizedCalloutData,\n Margins,\n RefArrayData,\n ScatterChartDataPoint,\n Chart,\n} from '../../index';\nimport { tokens } from '@fluentui/react-theme';\nimport {\n calloutData,\n ChartTypes,\n XAxisTypes,\n tooltipOfAxislabels,\n getTypeOfAxis,\n getNextColor,\n getColorFromToken,\n formatDate,\n} from '../../utilities/index';\n\ntype NumericAxis = D3Axis<number | { valueOf(): number }>;\n\ntype ScatterChartDataWithIndex = LineChartPoints & { index: number };\n\n// Create a ScatterChart variant which uses these default styles and this styled subcomponent.\n/**\n * ScatterChart component\n * {@docCategory ScatterChart}\n */\nexport const ScatterChart: React.FunctionComponent<ScatterChartProps> = React.forwardRef<\n HTMLDivElement,\n ScatterChartProps\n>((props, forwardedRef) => {\n const _circleId: string = useId('circle');\n const _seriesId: string = useId('seriesID');\n const _verticalLine: string = useId('verticalLine');\n const _tooltipId: string = useId('ScatterChartTooltipId_');\n const _firstRenderOptimization = true;\n const _emptyChartId: string = useId('_ScatterChart_empty');\n let _points: ScatterChartDataWithIndex[] = _injectIndexPropertyInScatterChartData(props.data.lineChartData);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let _calloutPoints: any[] = calloutData(_points) || [];\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let _xAxisScale: any = '';\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let _yAxisScale: any = '';\n let _uniqueCallOutID: string | null = '';\n let _refArray: RefArrayData[] = [];\n let margins: Margins;\n let renderSeries: JSX.Element[];\n let _xAxisLabels: string[] = [];\n let xAxisCalloutAccessibilityData: AccessibilityProps = {};\n let _xBandwidth = 0;\n const cartesianChartRef = React.useRef<Chart>(null);\n\n const [hoverXValue, setHoverXValue] = React.useState<string | number>('');\n const [activeLegend, setActiveLegend] = React.useState<string>('');\n const [YValueHover, setYValueHover] = React.useState<[]>([]);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const [selectedLegendPoints, setSelectedLegendPoints] = React.useState<any[]>([]);\n const [isSelectedLegend, setIsSelectedLegend] = React.useState<boolean>(false);\n const [activePoint, setActivePoint] = React.useState<string>('');\n const [stackCalloutProps, setStackCalloutProps] = React.useState<CustomizedCalloutData>();\n const [clickPosition, setClickPosition] = React.useState({ x: 0, y: 0 });\n const [isPopoverOpen, setPopoverOpen] = React.useState(false);\n const [selectedLegends, setSelectedLegends] = React.useState<string[]>(props.legendProps?.selectedLegends || []);\n const prevSelectedLegendsRef = React.useRef<string[] | undefined>(undefined);\n\n React.useEffect(() => {\n if (\n prevSelectedLegendsRef.current &&\n !areArraysEqual(prevSelectedLegendsRef.current, props.legendProps?.selectedLegends)\n ) {\n setSelectedLegends(props.legendProps?.selectedLegends || []);\n }\n prevSelectedLegendsRef.current = props.legendProps?.selectedLegends;\n }, [props.legendProps?.selectedLegends]);\n\n React.useImperativeHandle(\n props.componentRef,\n () => ({\n chartContainer: cartesianChartRef.current?.chartContainer ?? null,\n }),\n [],\n );\n\n const _xAxisType: XAxisTypes =\n props.data.lineChartData! &&\n props.data.lineChartData!.length > 0 &&\n props.data.lineChartData![0].data &&\n props.data.lineChartData![0].data.length > 0\n ? (getTypeOfAxis(props.data.lineChartData![0].data[0].x, true) as XAxisTypes)\n : XAxisTypes.StringAxis;\n\n const pointsRef = React.useRef<ScatterChartDataWithIndex[] | []>([]);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const calloutPointsRef = React.useRef<any[]>([]);\n React.useEffect(() => {\n /** note that height and width are not used to resize or set as dimesions of the chart,\n * fitParentContainer is responisble for setting the height and width or resizing of the svg/chart\n */\n\n if (_points !== _injectIndexPropertyInScatterChartData(props.data.lineChartData) || props.data !== _points) {\n pointsRef.current = _injectIndexPropertyInScatterChartData(props.data.lineChartData);\n calloutPointsRef.current = calloutData(pointsRef.current);\n }\n }, [props.height, props.width, props.data, _points]);\n\n function _injectIndexPropertyInScatterChartData(\n scatterChartData?: LineChartPoints[],\n ): ScatterChartDataWithIndex[] | [] {\n return scatterChartData\n ? scatterChartData.map((item: LineChartPoints, index: number) => {\n let color: string;\n if (typeof item.color === 'undefined') {\n color = getNextColor(index, 0);\n } else {\n color = getColorFromToken(item.color);\n }\n return {\n ...item,\n index: -1,\n color,\n };\n })\n : [];\n }\n\n function updatePosition(newX: number, newY: number) {\n const threshold = 1; // Set a threshold for movement\n const { x, y } = clickPosition;\n // Calculate the distance moved\n const distance = Math.sqrt(Math.pow(newX - x, 2) + Math.pow(newY - y, 2));\n // Update the position only if the distance moved is greater than the threshold\n if (distance > threshold) {\n setClickPosition({ x: newX, y: newY });\n setPopoverOpen(true);\n }\n }\n\n function _getMargins(_margins: Margins) {\n margins = _margins;\n }\n\n function _initializeScatterChartData(\n xScale: NumericAxis,\n yScale: NumericAxis,\n containerHeight: number,\n containerWidth: number,\n xElement: SVGElement | null,\n ) {\n _xAxisScale = xScale;\n _yAxisScale = yScale;\n renderSeries = _createPlot(xElement!, containerHeight!);\n }\n\n function _onHoverCardHide() {\n setSelectedLegendPoints([]);\n setIsSelectedLegend(false);\n }\n\n function _createLegends(data: ScatterChartDataWithIndex[]): JSX.Element {\n const { legendProps } = props;\n const isLegendMultiSelectEnabled = !!(legendProps && !!legendProps.canSelectMultipleLegends);\n const legendDataItems = data.map((point: ScatterChartDataWithIndex) => {\n const color: string = point.color!;\n // mapping data to the format Legends component needs\n const legend: Legend = {\n title: point.legend!,\n color,\n onMouseOutAction: () => {\n setActiveLegend('');\n },\n hoverAction: () => {\n _handleChartMouseLeave();\n setActiveLegend(point.legend);\n },\n ...(point.legendShape && {\n shape: point.legendShape,\n }),\n };\n return legend;\n });\n\n return (\n <Legends\n legends={[...legendDataItems]}\n enabledWrapLines={props.enabledLegendsWrapLines}\n overflowText={props.legendsOverflowText}\n {...(isLegendMultiSelectEnabled && { onLegendHoverCardLeave: _onHoverCardHide })}\n {...props.legendProps}\n selectedLegends={selectedLegends}\n onChange={_onLegendSelectionChange}\n />\n );\n }\n\n function _onLegendSelectionChange(\n legendsSelected: string[],\n event: React.MouseEvent<HTMLButtonElement>,\n currentLegend?: Legend,\n ): void {\n if (props.legendProps?.canSelectMultipleLegends) {\n setSelectedLegends(legendsSelected);\n } else {\n setSelectedLegends(legendsSelected.slice(-1));\n }\n\n if (props.legendProps?.onChange) {\n props.legendProps.onChange(legendsSelected, event, currentLegend);\n }\n }\n\n function _getPointFill(seriesColor: string, pointId: string, pointIndex: number, isLastPoint: boolean) {\n if (activePoint === pointId) {\n return tokens.colorNeutralBackground1;\n } else {\n return seriesColor;\n }\n }\n\n function _createPlot(xElement: SVGElement, containerHeight: number): JSX.Element[] {\n const series: JSX.Element[] = [];\n if (isSelectedLegend) {\n _points = selectedLegendPoints;\n } else {\n _points = _injectIndexPropertyInScatterChartData(props.data.lineChartData);\n }\n\n const yMax = d3Max(points, (point: LineChartPoints) => {\n return d3Max(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => item.y)!;\n })!;\n const yMin = d3Min(points, (point: LineChartPoints) => {\n return d3Min(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => item.y)!;\n })!;\n const yPadding = (yMax - yMin) * 0.1;\n const yPaddingRange = Math.abs(_yAxisScale(yMin + yPadding) - _yAxisScale(yMin));\n\n let maxMarkerRange = 40;\n let xPaddingRange = 0;\n if (_xAxisType === XAxisTypes.StringAxis) {\n _xBandwidth = _xAxisScale.bandwidth() / 2;\n xPaddingRange = _xBandwidth;\n } else if (_xAxisType === XAxisTypes.DateAxis) {\n const xMin = d3Min(points, (point: LineChartPoints) => {\n return d3Min(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => item.x as Date)!;\n })!;\n\n const xMax = d3Max(points, (point: LineChartPoints) => {\n return d3Max(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => {\n return item.x as Date;\n });\n })!;\n\n const xPadding = (xMax.getTime() - xMin.getTime()) * 0.1;\n xPaddingRange = Math.abs(_xAxisScale(new Date(xMin.getTime() + xPadding)) - _xAxisScale(xMin));\n } else {\n const xMin = d3Min(points, (point: LineChartPoints) => {\n return d3Min(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => item.x as number)!;\n })!;\n\n const xMax = d3Max(points, (point: LineChartPoints) => {\n return d3Max(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => {\n return item.x as number;\n });\n })!;\n\n const xPadding = (xMax - xMin) * 0.1;\n xPaddingRange = Math.abs(_xAxisScale(xMin + xPadding) - _xAxisScale(xMin));\n }\n maxMarkerRange = Math.min(maxMarkerRange, Math.min(xPaddingRange, yPaddingRange));\n\n const maxMarkerSize = d3Max(_points, (point: LineChartPoints) => {\n return d3Max(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => {\n return item.markerSize as number;\n });\n })!;\n\n for (let i = _points.length - 1; i >= 0; i--) {\n const pointsForSeries: JSX.Element[] = [];\n\n const legendVal: string = _points[i].legend;\n const seriesColor: string = _points[i].color!;\n const verticaLineHeight = containerHeight - margins.bottom! + 6;\n\n for (let j = 0; j < _points[i].data.length; j++) {\n const seriesId = `${_seriesId}_${i}_${j}`;\n const circleId = `${_circleId}_${i}_${j}`;\n const { x, y, xAxisCalloutData, xAxisCalloutAccessibilityData } = _points[i].data[j];\n let circleRadius = 3.5;\n const pointMarkerSize = (_points[i].data[j] as ScatterChartDataPoint).markerSize;\n if ((pointMarkerSize as number) !== undefined) {\n circleRadius = Math.min((pointMarkerSize! * maxMarkerRange) / maxMarkerSize, pointMarkerSize!);\n }\n\n const isLegendSelected: boolean = _legendHighlighted(legendVal) || _noLegendHighlighted() || isSelectedLegend;\n\n const currentPointHidden = _points[i].hideNonActiveDots && activePoint !== circleId;\n pointsForSeries.push(\n <circle\n id={circleId}\n key={circleId}\n r={circleRadius}\n cx={_xAxisScale(x) + _xBandwidth}\n cy={_yAxisScale(y)}\n data-is-focusable={isLegendSelected}\n onMouseOver={(event: React.MouseEvent<SVGElement>) =>\n _handleHover(x, y, verticaLineHeight, xAxisCalloutData, circleId, xAxisCalloutAccessibilityData, event)\n }\n onMouseMove={(event: React.MouseEvent<SVGElement>) =>\n _handleHover(x, y, verticaLineHeight, xAxisCalloutData, circleId, xAxisCalloutAccessibilityData, event)\n }\n onMouseOut={_handleMouseOut}\n onFocus={() => _handleFocus(seriesId, x, xAxisCalloutData, circleId, xAxisCalloutAccessibilityData)}\n onBlur={_handleMouseOut}\n {..._getClickHandler(_points[i].data[j].onDataPointClick)}\n opacity={isLegendSelected && !currentPointHidden ? 1 : 0.1}\n fill={_getPointFill(seriesColor, circleId, j, false)}\n stroke={seriesColor}\n role=\"img\"\n aria-label={_getAriaLabel(i, j)}\n tabIndex={isLegendSelected ? 0 : undefined}\n />,\n );\n }\n\n series.push(\n <g\n key={`series_${i}`}\n role=\"region\"\n aria-label={`${legendVal}, series ${i + 1} of ${_points.length} with ${_points[i].data.length} data points.`}\n >\n {pointsForSeries}\n </g>,\n );\n }\n const classes = useScatterChartStyles_unstable(props);\n // Removing un wanted tooltip div from DOM, when prop not provided.\n if (!props.showXAxisLablesTooltip) {\n try {\n document.getElementById(_tooltipId) && document.getElementById(_tooltipId)!.remove();\n // eslint-disable-next-line no-empty\n } catch (e) {}\n }\n // Used to display tooltip at x axis labels.\n if (!props.wrapXAxisLables && props.showXAxisLablesTooltip) {\n const xAxisElement = d3Select(xElement).call(_xAxisScale);\n try {\n document.getElementById(_tooltipId) && document.getElementById(_tooltipId)!.remove();\n // eslint-disable-next-line no-empty\n } catch (e) {}\n const tooltipProps = {\n tooltipCls: classes.tooltip!,\n id: _tooltipId,\n axis: xAxisElement,\n };\n xAxisElement && tooltipOfAxislabels(tooltipProps);\n }\n return series;\n }\n\n function _handleFocus(\n seriesId: string,\n x: number | Date | string,\n\n xAxisCalloutData: string | undefined,\n circleId: string,\n xAxisCalloutAccessibilityData?: AccessibilityProps,\n ) {\n _uniqueCallOutID = circleId;\n const formattedData = x instanceof Date ? formatDate(x, props.useUTC) : x;\n const xVal = x instanceof Date ? x.getTime() : x;\n const found = find(_calloutPoints, (element: { x: string | number }) => element.x === xVal);\n // if no points need to be called out then don't show vertical line and callout card\n\n if (found) {\n d3Select(`#${_verticalLine}`)\n .attr('transform', () => `translate(${_xAxisScale(x) + _xBandwidth}, 0)`)\n .attr('visibility', 'visibility');\n _refArray.forEach((obj: RefArrayData) => {\n if (obj.index === seriesId) {\n setPopoverOpen(true);\n xAxisCalloutData ? setHoverXValue(xAxisCalloutData) : setHoverXValue('' + formattedData);\n setYValueHover(found.values);\n setStackCalloutProps(found!);\n setActivePoint(circleId);\n }\n });\n } else {\n setActivePoint(circleId);\n }\n }\n\n function _handleHover(\n x: number | Date | string,\n y: number | Date,\n lineHeight: number,\n xAxisCalloutData: string | undefined,\n circleId: string,\n xAxisCalloutAccessibilityData: AccessibilityProps | undefined,\n mouseEvent: React.MouseEvent<SVGElement>,\n ) {\n mouseEvent?.persist();\n const formattedData = x instanceof Date ? formatDate(x, props.useUTC) : x;\n const xVal = x instanceof Date ? x.getTime() : x;\n const found = find(_calloutPoints, (element: { x: string | number }) => element.x === xVal);\n // if no points need to be called out then don't show vertical line and callout card\n\n if (found) {\n d3Select(`#${_verticalLine}`)\n .attr('transform', () => `translate(${_xAxisScale(x) + _xBandwidth}, ${_yAxisScale(y)})`)\n .attr('visibility', 'visibility')\n .attr('y2', `${lineHeight - _yAxisScale(y)}`);\n\n if (_uniqueCallOutID !== circleId) {\n _uniqueCallOutID = circleId;\n updatePosition(mouseEvent.clientX, mouseEvent.clientY);\n xAxisCalloutData ? setHoverXValue(xAxisCalloutData) : setHoverXValue('' + formattedData);\n setYValueHover(found.values);\n setStackCalloutProps(found!);\n setActivePoint(circleId);\n }\n } else {\n setActivePoint(circleId);\n }\n }\n\n /**\n * Screen readers announce an element as clickable if the onClick attribute is set.\n * This function sets the attribute only when a click event handler is provided.*/\n\n function _getClickHandler(func?: () => void): { onClick?: () => void } {\n if (func) {\n return {\n onClick: func,\n };\n }\n\n return {};\n }\n\n function _handleMouseOut() {\n d3Select(`#${_verticalLine}`).attr('visibility', 'hidden');\n }\n\n function _handleChartMouseLeave() {\n _uniqueCallOutID = null;\n setActivePoint('');\n if (isPopoverOpen) {\n setPopoverOpen(false);\n }\n }\n\n /**\n * This function checks if the given legend is highlighted or not.\n * A legend can be highlighted in 2 ways:\n * 1. selection: if the user clicks on it\n * 2. hovering: if there is no selected legend and the user hovers over it*/\n\n function _legendHighlighted(legend: string): boolean {\n return _getHighlightedLegend().includes(legend);\n }\n\n /**\n * This function checks if none of the legends is selected or hovered.*/\n\n function _noLegendHighlighted(): boolean {\n return _getHighlightedLegend().length === 0;\n }\n\n function _getHighlightedLegend(): string[] {\n return selectedLegends.length > 0 ? selectedLegends : activeLegend ? [activeLegend] : [];\n }\n\n function _getAriaLabel(seriesIndex: number, pointIndex: number): string {\n const series = _points[seriesIndex];\n const point = series.data[pointIndex];\n const formattedDate = point.x instanceof Date ? formatDate(point.x, props.useUTC) : point.x;\n const xValue = point.xAxisCalloutData || formattedDate;\n const legend = series.legend;\n const yValue = point.yAxisCalloutData || point.y;\n return point.callOutAccessibilityData?.ariaLabel || `${xValue}. ${legend}, ${yValue}.`;\n }\n\n function _isChartEmpty(): boolean {\n return !(\n props.data &&\n props.data.lineChartData &&\n props.data.lineChartData.length > 0 &&\n props.data.lineChartData.filter((item: LineChartPoints) => item.data.length).length > 0\n );\n }\n\n const { legendProps, tickValues, tickFormat } = props;\n _points = _injectIndexPropertyInScatterChartData(props.data.lineChartData);\n\n let points = _points;\n if (legendProps && !!legendProps.canSelectMultipleLegends) {\n points = selectedLegendPoints.length >= 1 ? selectedLegendPoints : _points;\n _calloutPoints = calloutData(points);\n }\n\n let legendBars = null;\n // reduce computation cost by only creating legendBars\n // if when hideLegend is false.\n // NOTE: they are rendered only when hideLegend is false in CartesianChart.\n if (!props.hideLegend) {\n legendBars = _createLegends(_points!); // ToDo: Memoize legends to improve performance.\n }\n const calloutProps = {\n YValueHover,\n hoverXValue,\n descriptionMessage:\n props.getCalloutDescriptionMessage && stackCalloutProps\n ? props.getCalloutDescriptionMessage(stackCalloutProps)\n : undefined,\n 'data-is-focusable': true,\n xAxisCalloutAccessibilityData,\n ...props.calloutProps,\n clickPosition,\n isPopoverOpen,\n isCalloutForStack: true,\n culture: props.culture ?? 'en-us',\n isCartesian: true,\n };\n const tickParams = {\n tickValues,\n tickFormat,\n };\n\n const xAxisLabels: string[] = _points\n .map((point: ScatterChartDataWithIndex) => point.data.map((dp: ScatterChartDataPoint) => dp.x as string))\n .flat();\n\n _xAxisLabels = [...new Set(xAxisLabels)];\n\n return !_isChartEmpty() ? (\n <CartesianChart\n {...props}\n chartTitle={props.data.chartTitle}\n points={points}\n chartType={ChartTypes.ScatterChart}\n calloutProps={calloutProps}\n tickParams={tickParams}\n legendBars={legendBars}\n getmargins={_getMargins}\n getGraphData={_initializeScatterChartData}\n xAxisType={_xAxisType}\n onChartMouseLeave={_handleChartMouseLeave}\n enableFirstRenderOptimization={_firstRenderOptimization}\n datasetForXAxisDomain={_xAxisLabels}\n componentRef={cartesianChartRef}\n /* eslint-disable react/jsx-no-bind */\n // eslint-disable-next-line react/no-children-prop\n children={(props: ChildProps) => {\n _xAxisScale = props.xScale!;\n _yAxisScale = props.yScalePrimary!;\n return (\n <>\n <g>\n <line\n x1={0}\n y1={0}\n x2={0}\n y2={props.containerHeight}\n stroke={'#323130'}\n id={_verticalLine}\n visibility={'hidden'}\n strokeDasharray={'5,5'}\n />\n <g>{renderSeries}</g>\n </g>\n </>\n );\n }}\n />\n ) : (\n <div id={_emptyChartId} role={'alert'} style={{ opacity: '0' }} aria-label={'Graph has no data to display'} />\n );\n});\nScatterChart.displayName = 'ScatterChart';\n"],"names":["React","useScatterChartStyles_unstable","select","d3Select","Legends","max","d3Max","min","d3Min","useId","areArraysEqual","find","CartesianChart","tokens","calloutData","ChartTypes","XAxisTypes","tooltipOfAxislabels","getTypeOfAxis","getNextColor","getColorFromToken","formatDate","ScatterChart","forwardRef","props","forwardedRef","_circleId","_seriesId","_verticalLine","_tooltipId","_firstRenderOptimization","_emptyChartId","_points","_injectIndexPropertyInScatterChartData","data","lineChartData","_calloutPoints","_xAxisScale","_yAxisScale","_uniqueCallOutID","_refArray","margins","renderSeries","_xAxisLabels","xAxisCalloutAccessibilityData","_xBandwidth","cartesianChartRef","useRef","hoverXValue","setHoverXValue","useState","activeLegend","setActiveLegend","YValueHover","setYValueHover","selectedLegendPoints","setSelectedLegendPoints","isSelectedLegend","setIsSelectedLegend","activePoint","setActivePoint","stackCalloutProps","setStackCalloutProps","clickPosition","setClickPosition","x","y","isPopoverOpen","setPopoverOpen","selectedLegends","setSelectedLegends","legendProps","prevSelectedLegendsRef","undefined","useEffect","current","useImperativeHandle","componentRef","chartContainer","_xAxisType","length","StringAxis","pointsRef","calloutPointsRef","height","width","scatterChartData","map","item","index","color","updatePosition","newX","newY","threshold","distance","Math","sqrt","pow","_getMargins","_margins","_initializeScatterChartData","xScale","yScale","containerHeight","containerWidth","xElement","_createPlot","_onHoverCardHide","_createLegends","isLegendMultiSelectEnabled","canSelectMultipleLegends","legendDataItems","point","legend","title","onMouseOutAction","hoverAction","_handleChartMouseLeave","legendShape","shape","legends","enabledWrapLines","enabledLegendsWrapLines","overflowText","legendsOverflowText","onLegendHoverCardLeave","onChange","_onLegendSelectionChange","legendsSelected","event","currentLegend","slice","_getPointFill","seriesColor","pointId","pointIndex","isLastPoint","colorNeutralBackground1","series","yMax","points","yMin","yPadding","yPaddingRange","abs","maxMarkerRange","xPaddingRange","bandwidth","DateAxis","xMin","xMax","xPadding","getTime","Date","maxMarkerSize","markerSize","i","pointsForSeries","legendVal","verticaLineHeight","bottom","j","seriesId","circleId","xAxisCalloutData","circleRadius","pointMarkerSize","isLegendSelected","_legendHighlighted","_noLegendHighlighted","currentPointHidden","hideNonActiveDots","push","circle","id","key","r","cx","cy","data-is-focusable","onMouseOver","_handleHover","onMouseMove","onMouseOut","_handleMouseOut","onFocus","_handleFocus","onBlur","_getClickHandler","onDataPointClick","opacity","fill","stroke","role","aria-label","_getAriaLabel","tabIndex","g","classes","showXAxisLablesTooltip","document","getElementById","remove","e","wrapXAxisLables","xAxisElement","call","tooltipProps","tooltipCls","tooltip","axis","formattedData","useUTC","xVal","found","element","attr","forEach","obj","values","lineHeight","mouseEvent","persist","clientX","clientY","func","onClick","_getHighlightedLegend","includes","seriesIndex","formattedDate","xValue","yValue","yAxisCalloutData","callOutAccessibilityData","ariaLabel","_isChartEmpty","filter","tickValues","tickFormat","legendBars","hideLegend","calloutProps","descriptionMessage","getCalloutDescriptionMessage","isCalloutForStack","culture","isCartesian","tickParams","xAxisLabels","dp","flat","Set","chartTitle","chartType","getmargins","getGraphData","xAxisType","onChartMouseLeave","enableFirstRenderOptimization","datasetForXAxisDomain","children","yScalePrimary","line","x1","y1","x2","y2","visibility","strokeDasharray","div","style","displayName"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"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"}
1
+ {"version":3,"sources":["ScatterChart.tsx"],"sourcesContent":["import * as React from 'react';\nimport { ScatterChartProps } from './ScatterChart.types';\nimport { useScatterChartStyles } from './useScatterChartStyles.styles';\nimport { Axis as D3Axis } from 'd3-axis';\nimport { select as d3Select } from 'd3-selection';\nimport { Legend, Legends } from '../Legends/index';\nimport { max as d3Max, min as d3Min } from 'd3-array';\nimport { useId } from '@fluentui/react-utilities';\nimport {\n areArraysEqual,\n createNumericYAxis,\n createStringYAxis,\n domainRangeOfDateForScatterChart,\n domainRangeOfNumericForScatterChart,\n domainRangeOfXStringAxis,\n find,\n findNumericMinMaxOfY,\n IDomainNRange,\n YAxisType,\n} from '../../utilities/index';\nimport {\n AccessibilityProps,\n CartesianChart,\n ChildProps,\n LineChartPoints,\n CustomizedCalloutData,\n Margins,\n RefArrayData,\n ScatterChartDataPoint,\n Chart,\n} from '../../index';\nimport { tokens } from '@fluentui/react-theme';\nimport {\n calloutData,\n ChartTypes,\n XAxisTypes,\n tooltipOfAxislabels,\n getTypeOfAxis,\n getNextColor,\n getColorFromToken,\n formatDate,\n} from '../../utilities/index';\n\ntype NumericAxis = D3Axis<number | { valueOf(): number }>;\n\ntype ScatterChartDataWithIndex = LineChartPoints & { index: number };\n\n// Create a ScatterChart variant which uses these default styles and this styled subcomponent.\n/**\n * ScatterChart component\n * {@docCategory ScatterChart}\n */\nexport const ScatterChart: React.FunctionComponent<ScatterChartProps> = React.forwardRef<\n HTMLDivElement,\n ScatterChartProps\n>((props, forwardedRef) => {\n const _circleId: string = useId('circle');\n const _seriesId: string = useId('seriesID');\n const _verticalLine: string = useId('verticalLine');\n const _tooltipId: string = useId('ScatterChartTooltipId_');\n const _firstRenderOptimization = true;\n const _emptyChartId: string = useId('_ScatterChart_empty');\n let _points: ScatterChartDataWithIndex[] = _injectIndexPropertyInScatterChartData(props.data.lineChartData);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let _calloutPoints: any[] = calloutData(_points) || [];\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let _xAxisScale: any = '';\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let _yAxisScale: any = '';\n let _uniqueCallOutID: string | null = '';\n let _refArray: RefArrayData[] = [];\n let margins: Margins;\n let renderSeries: JSX.Element[];\n let _xAxisLabels: string[] = [];\n let xAxisCalloutAccessibilityData: AccessibilityProps = {};\n let _xBandwidth = 0;\n const cartesianChartRef = React.useRef<Chart>(null);\n const classes = useScatterChartStyles(props);\n\n const [hoverXValue, setHoverXValue] = React.useState<string | number>('');\n const [activeLegend, setActiveLegend] = React.useState<string>('');\n const [YValueHover, setYValueHover] = React.useState<[]>([]);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const [selectedLegendPoints, setSelectedLegendPoints] = React.useState<any[]>([]);\n const [isSelectedLegend, setIsSelectedLegend] = React.useState<boolean>(false);\n const [activePoint, setActivePoint] = React.useState<string>('');\n const [stackCalloutProps, setStackCalloutProps] = React.useState<CustomizedCalloutData>();\n const [clickPosition, setClickPosition] = React.useState({ x: 0, y: 0 });\n const [isPopoverOpen, setPopoverOpen] = React.useState(false);\n const [selectedLegends, setSelectedLegends] = React.useState<string[]>(props.legendProps?.selectedLegends || []);\n const prevSelectedLegendsRef = React.useRef<string[] | undefined>(undefined);\n\n React.useEffect(() => {\n if (\n prevSelectedLegendsRef.current &&\n !areArraysEqual(prevSelectedLegendsRef.current, props.legendProps?.selectedLegends)\n ) {\n setSelectedLegends(props.legendProps?.selectedLegends || []);\n }\n prevSelectedLegendsRef.current = props.legendProps?.selectedLegends;\n }, [props.legendProps?.selectedLegends]);\n\n React.useImperativeHandle(\n props.componentRef,\n () => ({\n chartContainer: cartesianChartRef.current?.chartContainer ?? null,\n }),\n [],\n );\n\n const _xAxisType: XAxisTypes =\n props.data.lineChartData! &&\n props.data.lineChartData!.length > 0 &&\n props.data.lineChartData![0].data &&\n props.data.lineChartData![0].data.length > 0\n ? (getTypeOfAxis(props.data.lineChartData![0].data[0].x, true) as XAxisTypes)\n : XAxisTypes.StringAxis;\n\n const pointsRef = React.useRef<ScatterChartDataWithIndex[] | []>([]);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const calloutPointsRef = React.useRef<any[]>([]);\n React.useEffect(() => {\n /** note that height and width are not used to resize or set as dimesions of the chart,\n * fitParentContainer is responisble for setting the height and width or resizing of the svg/chart\n */\n\n if (_points !== _injectIndexPropertyInScatterChartData(props.data.lineChartData) || props.data !== _points) {\n pointsRef.current = _injectIndexPropertyInScatterChartData(props.data.lineChartData);\n calloutPointsRef.current = calloutData(pointsRef.current);\n }\n }, [props.height, props.width, props.data, _points]);\n\n function _injectIndexPropertyInScatterChartData(\n scatterChartData?: LineChartPoints[],\n ): ScatterChartDataWithIndex[] | [] {\n return scatterChartData\n ? scatterChartData.map((item: LineChartPoints, index: number) => {\n let color: string;\n if (typeof item.color === 'undefined') {\n color = getNextColor(index, 0);\n } else {\n color = getColorFromToken(item.color);\n }\n return {\n ...item,\n index: -1,\n color,\n };\n })\n : [];\n }\n\n function updatePosition(newX: number, newY: number) {\n const threshold = 1; // Set a threshold for movement\n const { x, y } = clickPosition;\n // Calculate the distance moved\n const distance = Math.sqrt(Math.pow(newX - x, 2) + Math.pow(newY - y, 2));\n // Update the position only if the distance moved is greater than the threshold\n if (distance > threshold) {\n setClickPosition({ x: newX, y: newY });\n setPopoverOpen(true);\n }\n }\n\n function _getNumericMinMaxOfY(\n points: LineChartPoints[],\n yAxisType?: YAxisType,\n ): { startValue: number; endValue: number } {\n // eslint-disable-next-line @typescript-eslint/no-shadow\n const { startValue, endValue } = findNumericMinMaxOfY(points, yAxisType);\n let yPadding = 0;\n yPadding = (endValue - startValue) * 0.1;\n\n return {\n startValue: startValue - yPadding,\n endValue: endValue + yPadding,\n };\n }\n\n function _getDomainNRangeValues(\n points: any,\n margins: Margins,\n width: number,\n chartType: ChartTypes,\n isRTL: boolean,\n xAxisType: XAxisTypes,\n barWidth: number,\n tickValues: Date[] | number[] | undefined,\n shiftX: number,\n ) {\n let domainNRangeValue: IDomainNRange;\n if (xAxisType === XAxisTypes.NumericAxis) {\n domainNRangeValue = domainRangeOfNumericForScatterChart(points, margins, width, isRTL);\n } else if (xAxisType === XAxisTypes.DateAxis) {\n domainNRangeValue = domainRangeOfDateForScatterChart(points, margins, width, isRTL, tickValues! as Date[]);\n } else {\n domainNRangeValue = domainRangeOfXStringAxis(margins, width, isRTL);\n }\n return domainNRangeValue;\n }\n\n function _getMargins(_margins: Margins) {\n margins = _margins;\n }\n\n function _initializeScatterChartData(\n xScale: NumericAxis,\n yScale: NumericAxis,\n containerHeight: number,\n containerWidth: number,\n xElement: SVGElement | null,\n ) {\n _xAxisScale = xScale;\n _yAxisScale = yScale;\n renderSeries = _createPlot(xElement!, containerHeight!);\n }\n\n function _onHoverCardHide() {\n setSelectedLegendPoints([]);\n setIsSelectedLegend(false);\n }\n\n function _createLegends(data: ScatterChartDataWithIndex[]): JSX.Element {\n const { legendProps } = props;\n const isLegendMultiSelectEnabled = !!(legendProps && !!legendProps.canSelectMultipleLegends);\n const legendDataItems = data.map((point: ScatterChartDataWithIndex) => {\n const color: string = point.color!;\n // mapping data to the format Legends component needs\n const legend: Legend = {\n title: point.legend!,\n color,\n onMouseOutAction: () => {\n setActiveLegend('');\n },\n hoverAction: () => {\n _handleChartMouseLeave();\n setActiveLegend(point.legend);\n },\n ...(point.legendShape && {\n shape: point.legendShape,\n }),\n };\n return legend;\n });\n\n return (\n <Legends\n legends={[...legendDataItems]}\n enabledWrapLines={props.enabledLegendsWrapLines}\n overflowText={props.legendsOverflowText}\n {...(isLegendMultiSelectEnabled && { onLegendHoverCardLeave: _onHoverCardHide })}\n {...props.legendProps}\n selectedLegends={selectedLegends}\n onChange={_onLegendSelectionChange}\n />\n );\n }\n\n function _onLegendSelectionChange(\n legendsSelected: string[],\n event: React.MouseEvent<HTMLButtonElement>,\n currentLegend?: Legend,\n ): void {\n if (props.legendProps?.canSelectMultipleLegends) {\n setSelectedLegends(legendsSelected);\n } else {\n setSelectedLegends(legendsSelected.slice(-1));\n }\n\n if (props.legendProps?.onChange) {\n props.legendProps.onChange(legendsSelected, event, currentLegend);\n }\n }\n\n function _getPointFill(seriesColor: string, pointId: string, pointIndex: number, isLastPoint: boolean) {\n if (activePoint === pointId) {\n return tokens.colorNeutralBackground1;\n } else {\n return seriesColor;\n }\n }\n\n function _createPlot(xElement: SVGElement, containerHeight: number): JSX.Element[] {\n const series: JSX.Element[] = [];\n if (isSelectedLegend) {\n _points = selectedLegendPoints;\n } else {\n _points = _injectIndexPropertyInScatterChartData(props.data.lineChartData);\n }\n\n const yMax = d3Max(points, (point: LineChartPoints) => {\n return d3Max(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => item.y)!;\n })!;\n const yMin = d3Min(points, (point: LineChartPoints) => {\n return d3Min(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => item.y)!;\n })!;\n const yPadding = (yMax - yMin) * 0.1;\n const yPaddingRange = Math.abs(_yAxisScale(yMin + yPadding) - _yAxisScale(yMin));\n\n let maxMarkerRange = 40;\n let xPaddingRange = 0;\n if (_xAxisType === XAxisTypes.StringAxis) {\n _xBandwidth = _xAxisScale.bandwidth() / 2;\n xPaddingRange = _xBandwidth;\n } else if (_xAxisType === XAxisTypes.DateAxis) {\n const xMin = d3Min(points, (point: LineChartPoints) => {\n return d3Min(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => item.x as Date)!;\n })!;\n\n const xMax = d3Max(points, (point: LineChartPoints) => {\n return d3Max(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => {\n return item.x as Date;\n });\n })!;\n\n const xPadding = (xMax.getTime() - xMin.getTime()) * 0.1;\n xPaddingRange = Math.abs(_xAxisScale(new Date(xMin.getTime() + xPadding)) - _xAxisScale(xMin));\n } else {\n const xMin = d3Min(points, (point: LineChartPoints) => {\n return d3Min(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => item.x as number)!;\n })!;\n\n const xMax = d3Max(points, (point: LineChartPoints) => {\n return d3Max(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => {\n return item.x as number;\n });\n })!;\n\n const xPadding = (xMax - xMin) * 0.1;\n xPaddingRange = Math.abs(_xAxisScale(xMin + xPadding) - _xAxisScale(xMin));\n }\n maxMarkerRange = Math.min(maxMarkerRange, Math.min(xPaddingRange, yPaddingRange));\n\n const maxMarkerSize = d3Max(_points, (point: LineChartPoints) => {\n return d3Max(point.data as ScatterChartDataPoint[], (item: ScatterChartDataPoint) => {\n return item.markerSize as number;\n });\n })!;\n\n for (let i = _points.length - 1; i >= 0; i--) {\n const pointsForSeries: JSX.Element[] = [];\n\n const legendVal: string = _points[i].legend;\n const seriesColor: string = _points[i].color!;\n const verticaLineHeight = containerHeight - margins.bottom! + 6;\n\n for (let j = 0; j < _points[i].data.length; j++) {\n const seriesId = `${_seriesId}_${i}_${j}`;\n const circleId = `${_circleId}_${i}_${j}`;\n const { x, y, xAxisCalloutData, xAxisCalloutAccessibilityData } = _points[i].data[j];\n let circleRadius = 3.5;\n const pointMarkerSize = (_points[i].data[j] as ScatterChartDataPoint).markerSize;\n if ((pointMarkerSize as number) !== undefined) {\n circleRadius = Math.min((pointMarkerSize! * maxMarkerRange) / maxMarkerSize, pointMarkerSize!);\n }\n\n const isLegendSelected: boolean = _legendHighlighted(legendVal) || _noLegendHighlighted() || isSelectedLegend;\n\n const currentPointHidden = _points[i].hideNonActiveDots && activePoint !== circleId;\n pointsForSeries.push(\n <circle\n id={circleId}\n key={circleId}\n r={circleRadius}\n cx={_xAxisScale(x) + _xBandwidth}\n cy={_yAxisScale(y)}\n data-is-focusable={isLegendSelected}\n onMouseOver={(event: React.MouseEvent<SVGElement>) =>\n _handleHover(x, y, verticaLineHeight, xAxisCalloutData, circleId, xAxisCalloutAccessibilityData, event)\n }\n onMouseMove={(event: React.MouseEvent<SVGElement>) =>\n _handleHover(x, y, verticaLineHeight, xAxisCalloutData, circleId, xAxisCalloutAccessibilityData, event)\n }\n onMouseOut={_handleMouseOut}\n onFocus={() => _handleFocus(seriesId, x, xAxisCalloutData, circleId, xAxisCalloutAccessibilityData)}\n onBlur={_handleMouseOut}\n {..._getClickHandler(_points[i].data[j].onDataPointClick)}\n opacity={isLegendSelected && !currentPointHidden ? 1 : 0.1}\n fill={_getPointFill(seriesColor, circleId, j, false)}\n stroke={seriesColor}\n role=\"img\"\n aria-label={_getAriaLabel(i, j)}\n tabIndex={isLegendSelected ? 0 : undefined}\n />,\n );\n }\n\n series.push(\n <g\n key={`series_${i}`}\n role=\"region\"\n aria-label={`${legendVal}, series ${i + 1} of ${_points.length} with ${_points[i].data.length} data points.`}\n >\n {pointsForSeries}\n </g>,\n );\n }\n // Removing un wanted tooltip div from DOM, when prop not provided.\n if (!props.showXAxisLablesTooltip) {\n try {\n document.getElementById(_tooltipId) && document.getElementById(_tooltipId)!.remove();\n // eslint-disable-next-line no-empty\n } catch (e) {}\n }\n // Used to display tooltip at x axis labels.\n if (!props.wrapXAxisLables && props.showXAxisLablesTooltip) {\n const xAxisElement = d3Select(xElement).call(_xAxisScale);\n try {\n document.getElementById(_tooltipId) && document.getElementById(_tooltipId)!.remove();\n // eslint-disable-next-line no-empty\n } catch (e) {}\n const tooltipProps = {\n tooltipCls: classes.tooltip!,\n id: _tooltipId,\n axis: xAxisElement,\n };\n xAxisElement && tooltipOfAxislabels(tooltipProps);\n }\n return series;\n }\n\n function _handleFocus(\n seriesId: string,\n x: number | Date | string,\n\n xAxisCalloutData: string | undefined,\n circleId: string,\n xAxisCalloutAccessibilityData?: AccessibilityProps,\n ) {\n _uniqueCallOutID = circleId;\n const formattedData = x instanceof Date ? formatDate(x, props.useUTC) : x;\n const xVal = x instanceof Date ? x.getTime() : x;\n const found = find(_calloutPoints, (element: { x: string | number }) => element.x === xVal);\n // if no points need to be called out then don't show vertical line and callout card\n\n if (found) {\n d3Select(`#${_verticalLine}`)\n .attr('transform', () => `translate(${_xAxisScale(x) + _xBandwidth}, 0)`)\n .attr('visibility', 'visibility');\n _refArray.forEach((obj: RefArrayData) => {\n if (obj.index === seriesId) {\n setPopoverOpen(true);\n xAxisCalloutData ? setHoverXValue(xAxisCalloutData) : setHoverXValue('' + formattedData);\n setYValueHover(found.values);\n setStackCalloutProps(found!);\n setActivePoint(circleId);\n }\n });\n } else {\n setActivePoint(circleId);\n }\n }\n\n function _handleHover(\n x: number | Date | string,\n y: number | Date,\n lineHeight: number,\n xAxisCalloutData: string | undefined,\n circleId: string,\n xAxisCalloutAccessibilityData: AccessibilityProps | undefined,\n mouseEvent: React.MouseEvent<SVGElement>,\n ) {\n mouseEvent?.persist();\n const formattedData = x instanceof Date ? formatDate(x, props.useUTC) : x;\n const xVal = x instanceof Date ? x.getTime() : x;\n const found = find(_calloutPoints, (element: { x: string | number }) => element.x === xVal);\n // if no points need to be called out then don't show vertical line and callout card\n\n if (found) {\n d3Select(`#${_verticalLine}`)\n .attr('transform', () => `translate(${_xAxisScale(x) + _xBandwidth}, ${_yAxisScale(y)})`)\n .attr('visibility', 'visibility')\n .attr('y2', `${lineHeight - _yAxisScale(y)}`);\n\n if (_uniqueCallOutID !== circleId) {\n _uniqueCallOutID = circleId;\n updatePosition(mouseEvent.clientX, mouseEvent.clientY);\n xAxisCalloutData ? setHoverXValue(xAxisCalloutData) : setHoverXValue('' + formattedData);\n setYValueHover(found.values);\n setStackCalloutProps(found!);\n setActivePoint(circleId);\n }\n } else {\n setActivePoint(circleId);\n }\n }\n\n /**\n * Screen readers announce an element as clickable if the onClick attribute is set.\n * This function sets the attribute only when a click event handler is provided.*/\n\n function _getClickHandler(func?: () => void): { onClick?: () => void } {\n if (func) {\n return {\n onClick: func,\n };\n }\n\n return {};\n }\n\n function _handleMouseOut() {\n d3Select(`#${_verticalLine}`).attr('visibility', 'hidden');\n }\n\n function _handleChartMouseLeave() {\n _uniqueCallOutID = null;\n setActivePoint('');\n if (isPopoverOpen) {\n setPopoverOpen(false);\n }\n }\n\n /**\n * This function checks if the given legend is highlighted or not.\n * A legend can be highlighted in 2 ways:\n * 1. selection: if the user clicks on it\n * 2. hovering: if there is no selected legend and the user hovers over it*/\n\n function _legendHighlighted(legend: string): boolean {\n return _getHighlightedLegend().includes(legend);\n }\n\n /**\n * This function checks if none of the legends is selected or hovered.*/\n\n function _noLegendHighlighted(): boolean {\n return _getHighlightedLegend().length === 0;\n }\n\n function _getHighlightedLegend(): string[] {\n return selectedLegends.length > 0 ? selectedLegends : activeLegend ? [activeLegend] : [];\n }\n\n function _getAriaLabel(seriesIndex: number, pointIndex: number): string {\n const series = _points[seriesIndex];\n const point = series.data[pointIndex];\n const formattedDate = point.x instanceof Date ? formatDate(point.x, props.useUTC) : point.x;\n const xValue = point.xAxisCalloutData || formattedDate;\n const legend = series.legend;\n const yValue = point.yAxisCalloutData || point.y;\n return point.callOutAccessibilityData?.ariaLabel || `${xValue}. ${legend}, ${yValue}.`;\n }\n\n function _isChartEmpty(): boolean {\n return !(\n props.data &&\n props.data.lineChartData &&\n props.data.lineChartData.length > 0 &&\n props.data.lineChartData.filter((item: LineChartPoints) => item.data.length).length > 0\n );\n }\n\n const { legendProps, tickValues, tickFormat } = props;\n _points = _injectIndexPropertyInScatterChartData(props.data.lineChartData);\n\n let points = _points;\n if (legendProps && !!legendProps.canSelectMultipleLegends) {\n points = selectedLegendPoints.length >= 1 ? selectedLegendPoints : _points;\n _calloutPoints = calloutData(points);\n }\n\n let legendBars = null;\n // reduce computation cost by only creating legendBars\n // if when hideLegend is false.\n // NOTE: they are rendered only when hideLegend is false in CartesianChart.\n if (!props.hideLegend) {\n legendBars = _createLegends(_points!); // ToDo: Memoize legends to improve performance.\n }\n const calloutProps = {\n YValueHover,\n hoverXValue,\n descriptionMessage:\n props.getCalloutDescriptionMessage && stackCalloutProps\n ? props.getCalloutDescriptionMessage(stackCalloutProps)\n : undefined,\n 'data-is-focusable': true,\n xAxisCalloutAccessibilityData,\n ...props.calloutProps,\n clickPosition,\n isPopoverOpen,\n isCalloutForStack: true,\n culture: props.culture ?? 'en-us',\n isCartesian: true,\n };\n const tickParams = {\n tickValues,\n tickFormat,\n };\n\n const xAxisLabels: string[] = _points\n .map((point: ScatterChartDataWithIndex) => point.data.map((dp: ScatterChartDataPoint) => dp.x as string))\n .flat();\n\n _xAxisLabels = [...new Set(xAxisLabels)];\n\n return !_isChartEmpty() ? (\n <CartesianChart\n {...props}\n chartTitle={props.data.chartTitle}\n points={points}\n chartType={ChartTypes.ScatterChart}\n calloutProps={calloutProps}\n tickParams={tickParams}\n legendBars={legendBars}\n getmargins={_getMargins}\n getGraphData={_initializeScatterChartData}\n xAxisType={_xAxisType}\n getMinMaxOfYAxis={_getNumericMinMaxOfY}\n getDomainNRangeValues={_getDomainNRangeValues}\n createYAxis={createNumericYAxis}\n createStringYAxis={createStringYAxis}\n onChartMouseLeave={_handleChartMouseLeave}\n enableFirstRenderOptimization={_firstRenderOptimization}\n datasetForXAxisDomain={_xAxisLabels}\n componentRef={cartesianChartRef}\n /* eslint-disable react/jsx-no-bind */\n // eslint-disable-next-line react/no-children-prop\n children={(props: ChildProps) => {\n _xAxisScale = props.xScale!;\n _yAxisScale = props.yScalePrimary!;\n return (\n <>\n <g>\n <line\n x1={0}\n y1={0}\n x2={0}\n y2={props.containerHeight}\n stroke={'#323130'}\n id={_verticalLine}\n visibility={'hidden'}\n strokeDasharray={'5,5'}\n />\n <g>{renderSeries}</g>\n </g>\n </>\n );\n }}\n />\n ) : (\n <div id={_emptyChartId} role={'alert'} style={{ opacity: '0' }} aria-label={'Graph has no data to display'} />\n );\n});\nScatterChart.displayName = 'ScatterChart';\n"],"names":["React","useScatterChartStyles","select","d3Select","Legends","max","d3Max","min","d3Min","useId","areArraysEqual","createNumericYAxis","createStringYAxis","domainRangeOfDateForScatterChart","domainRangeOfNumericForScatterChart","domainRangeOfXStringAxis","find","findNumericMinMaxOfY","CartesianChart","tokens","calloutData","ChartTypes","XAxisTypes","tooltipOfAxislabels","getTypeOfAxis","getNextColor","getColorFromToken","formatDate","ScatterChart","forwardRef","props","forwardedRef","_circleId","_seriesId","_verticalLine","_tooltipId","_firstRenderOptimization","_emptyChartId","_points","_injectIndexPropertyInScatterChartData","data","lineChartData","_calloutPoints","_xAxisScale","_yAxisScale","_uniqueCallOutID","_refArray","margins","renderSeries","_xAxisLabels","xAxisCalloutAccessibilityData","_xBandwidth","cartesianChartRef","useRef","classes","hoverXValue","setHoverXValue","useState","activeLegend","setActiveLegend","YValueHover","setYValueHover","selectedLegendPoints","setSelectedLegendPoints","isSelectedLegend","setIsSelectedLegend","activePoint","setActivePoint","stackCalloutProps","setStackCalloutProps","clickPosition","setClickPosition","x","y","isPopoverOpen","setPopoverOpen","selectedLegends","setSelectedLegends","legendProps","prevSelectedLegendsRef","undefined","useEffect","current","useImperativeHandle","componentRef","chartContainer","_xAxisType","length","StringAxis","pointsRef","calloutPointsRef","height","width","scatterChartData","map","item","index","color","updatePosition","newX","newY","threshold","distance","Math","sqrt","pow","_getNumericMinMaxOfY","points","yAxisType","startValue","endValue","yPadding","_getDomainNRangeValues","chartType","isRTL","xAxisType","barWidth","tickValues","shiftX","domainNRangeValue","NumericAxis","DateAxis","_getMargins","_margins","_initializeScatterChartData","xScale","yScale","containerHeight","containerWidth","xElement","_createPlot","_onHoverCardHide","_createLegends","isLegendMultiSelectEnabled","canSelectMultipleLegends","legendDataItems","point","legend","title","onMouseOutAction","hoverAction","_handleChartMouseLeave","legendShape","shape","legends","enabledWrapLines","enabledLegendsWrapLines","overflowText","legendsOverflowText","onLegendHoverCardLeave","onChange","_onLegendSelectionChange","legendsSelected","event","currentLegend","slice","_getPointFill","seriesColor","pointId","pointIndex","isLastPoint","colorNeutralBackground1","series","yMax","yMin","yPaddingRange","abs","maxMarkerRange","xPaddingRange","bandwidth","xMin","xMax","xPadding","getTime","Date","maxMarkerSize","markerSize","i","pointsForSeries","legendVal","verticaLineHeight","bottom","j","seriesId","circleId","xAxisCalloutData","circleRadius","pointMarkerSize","isLegendSelected","_legendHighlighted","_noLegendHighlighted","currentPointHidden","hideNonActiveDots","push","circle","id","key","r","cx","cy","data-is-focusable","onMouseOver","_handleHover","onMouseMove","onMouseOut","_handleMouseOut","onFocus","_handleFocus","onBlur","_getClickHandler","onDataPointClick","opacity","fill","stroke","role","aria-label","_getAriaLabel","tabIndex","g","showXAxisLablesTooltip","document","getElementById","remove","e","wrapXAxisLables","xAxisElement","call","tooltipProps","tooltipCls","tooltip","axis","formattedData","useUTC","xVal","found","element","attr","forEach","obj","values","lineHeight","mouseEvent","persist","clientX","clientY","func","onClick","_getHighlightedLegend","includes","seriesIndex","formattedDate","xValue","yValue","yAxisCalloutData","callOutAccessibilityData","ariaLabel","_isChartEmpty","filter","tickFormat","legendBars","hideLegend","calloutProps","descriptionMessage","getCalloutDescriptionMessage","isCalloutForStack","culture","isCartesian","tickParams","xAxisLabels","dp","flat","Set","chartTitle","getmargins","getGraphData","getMinMaxOfYAxis","getDomainNRangeValues","createYAxis","onChartMouseLeave","enableFirstRenderOptimization","datasetForXAxisDomain","children","yScalePrimary","line","x1","y1","x2","y2","visibility","strokeDasharray","div","style","displayName"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"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"}
@@ -49,7 +49,7 @@ const useStyles = /*#__PURE__*/__styles({
49
49
  /**
50
50
  * Apply styling to the Carousel slots based on the state
51
51
  */
52
- export const useScatterChartStyles_unstable = props => {
52
+ export const useScatterChartStyles = props => {
53
53
  const baseStyles = useStyles();
54
54
  return {
55
55
  tooltip: mergeClasses(scatterChartClassNames.tooltip, baseStyles.tooltip /*props.styles?.tooltip*/)
@@ -1 +1 @@
1
- {"version":3,"names":["__styles","mergeClasses","shorthands","tokens","scatterChartClassNames","tooltip","root","xAxis","yAxis","legendContainer","hover","descriptionMessage","axisTitle","chartTitle","opacityChangeOnHover","shapeStyles","chartWrapper","svgTooltip","chart","useStyles","mc9l5x","Beiy3e4","z8tnut","z189sj","Byoj8tv","uwmqm3","qhf8xq","fsow6f","Bhzewxz","Bkfmm31","Beyfa6y","Bbmb7ep","Btl43ni","B7oj6ja","Dimara","Bkecrkj","d","p","useScatterChartStyles_unstable","props","baseStyles"],"sources":["useScatterChartStyles.styles.js"],"sourcesContent":["import { makeStyles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\n/**\n * @internal\n */ export const scatterChartClassNames = {\n tooltip: 'fui-line__tooltip',\n root: 'fui-line__root',\n xAxis: 'fui-line__xAxis',\n yAxis: 'fui-line__yAxis',\n legendContainer: 'fui-line__legendContainer',\n hover: 'fui-line__hover',\n descriptionMessage: 'fui-line__descriptionMessage',\n axisTitle: 'fui-line__axisTitle',\n chartTitle: 'fui-line__chartTitle',\n opacityChangeOnHover: 'fui-line__opacityChangeOnHover',\n shapeStyles: 'fui-line__shapeStyles',\n chartWrapper: 'fui-line__chartWrapper',\n svgTooltip: '',\n chart: ''\n};\n/**\n * Base Styles\n */ const useStyles = makeStyles({\n tooltip: {\n display: 'flex',\n flexDirection: 'column',\n ...shorthands.padding(tokens.spacingHorizontalS),\n position: 'absolute',\n textAlign: 'center',\n top: tokens.spacingVerticalNone,\n fill: tokens.colorNeutralBackground1,\n borderRadius: tokens.borderRadiusSmall,\n pointerEvents: 'none'\n }\n});\n/**\n * Apply styling to the Carousel slots based on the state\n */ export const useScatterChartStyles_unstable = (props)=>{\n const baseStyles = useStyles();\n return {\n tooltip: mergeClasses(scatterChartClassNames.tooltip, baseStyles.tooltip /*props.styles?.tooltip*/ )\n };\n};\n"],"mappings":"AAAA,SAAAA,QAAA,EAAqBC,YAAY,EAAEC,UAAU,QAAQ,gBAAgB;AACrE,SAASC,MAAM,QAAQ,uBAAuB;AAC9C;AACA;AACA;AAAI,OAAO,MAAMC,sBAAsB,GAAG;EACtCC,OAAO,EAAE,mBAAmB;EAC5BC,IAAI,EAAE,gBAAgB;EACtBC,KAAK,EAAE,iBAAiB;EACxBC,KAAK,EAAE,iBAAiB;EACxBC,eAAe,EAAE,2BAA2B;EAC5CC,KAAK,EAAE,iBAAiB;EACxBC,kBAAkB,EAAE,8BAA8B;EAClDC,SAAS,EAAE,qBAAqB;EAChCC,UAAU,EAAE,sBAAsB;EAClCC,oBAAoB,EAAE,gCAAgC;EACtDC,WAAW,EAAE,uBAAuB;EACpCC,YAAY,EAAE,wBAAwB;EACtCC,UAAU,EAAE,EAAE;EACdC,KAAK,EAAE;AACX,CAAC;AACD;AACA;AACA;AAAI,MAAMC,SAAS,gBAAGnB,QAAA;EAAAK,OAAA;IAAAe,MAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;EAAA;AAAA;EAAAC,CAAA;IAAAC,CAAA;EAAA;AAAA,CAYrB,CAAC;AACF;AACA;AACA;AAAI,OAAO,MAAMC,8BAA8B,GAAIC,KAAK,IAAG;EACvD,MAAMC,UAAU,GAAGrB,SAAS,CAAC,CAAC;EAC9B,OAAO;IACHd,OAAO,EAAEJ,YAAY,CAACG,sBAAsB,CAACC,OAAO,EAAEmC,UAAU,CAACnC,OAAO,CAAC,yBAA0B;EACvG,CAAC;AACL,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["__styles","mergeClasses","shorthands","tokens","scatterChartClassNames","tooltip","root","xAxis","yAxis","legendContainer","hover","descriptionMessage","axisTitle","chartTitle","opacityChangeOnHover","shapeStyles","chartWrapper","svgTooltip","chart","useStyles","mc9l5x","Beiy3e4","z8tnut","z189sj","Byoj8tv","uwmqm3","qhf8xq","fsow6f","Bhzewxz","Bkfmm31","Beyfa6y","Bbmb7ep","Btl43ni","B7oj6ja","Dimara","Bkecrkj","d","p","useScatterChartStyles","props","baseStyles"],"sources":["useScatterChartStyles.styles.js"],"sourcesContent":["import { makeStyles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\n/**\n * @internal\n */ export const scatterChartClassNames = {\n tooltip: 'fui-line__tooltip',\n root: 'fui-line__root',\n xAxis: 'fui-line__xAxis',\n yAxis: 'fui-line__yAxis',\n legendContainer: 'fui-line__legendContainer',\n hover: 'fui-line__hover',\n descriptionMessage: 'fui-line__descriptionMessage',\n axisTitle: 'fui-line__axisTitle',\n chartTitle: 'fui-line__chartTitle',\n opacityChangeOnHover: 'fui-line__opacityChangeOnHover',\n shapeStyles: 'fui-line__shapeStyles',\n chartWrapper: 'fui-line__chartWrapper',\n svgTooltip: '',\n chart: ''\n};\n/**\n * Base Styles\n */ const useStyles = makeStyles({\n tooltip: {\n display: 'flex',\n flexDirection: 'column',\n ...shorthands.padding(tokens.spacingHorizontalS),\n position: 'absolute',\n textAlign: 'center',\n top: tokens.spacingVerticalNone,\n fill: tokens.colorNeutralBackground1,\n borderRadius: tokens.borderRadiusSmall,\n pointerEvents: 'none'\n }\n});\n/**\n * Apply styling to the Carousel slots based on the state\n */ export const useScatterChartStyles = (props)=>{\n const baseStyles = useStyles();\n return {\n tooltip: mergeClasses(scatterChartClassNames.tooltip, baseStyles.tooltip /*props.styles?.tooltip*/ )\n };\n};\n"],"mappings":"AAAA,SAAAA,QAAA,EAAqBC,YAAY,EAAEC,UAAU,QAAQ,gBAAgB;AACrE,SAASC,MAAM,QAAQ,uBAAuB;AAC9C;AACA;AACA;AAAI,OAAO,MAAMC,sBAAsB,GAAG;EACtCC,OAAO,EAAE,mBAAmB;EAC5BC,IAAI,EAAE,gBAAgB;EACtBC,KAAK,EAAE,iBAAiB;EACxBC,KAAK,EAAE,iBAAiB;EACxBC,eAAe,EAAE,2BAA2B;EAC5CC,KAAK,EAAE,iBAAiB;EACxBC,kBAAkB,EAAE,8BAA8B;EAClDC,SAAS,EAAE,qBAAqB;EAChCC,UAAU,EAAE,sBAAsB;EAClCC,oBAAoB,EAAE,gCAAgC;EACtDC,WAAW,EAAE,uBAAuB;EACpCC,YAAY,EAAE,wBAAwB;EACtCC,UAAU,EAAE,EAAE;EACdC,KAAK,EAAE;AACX,CAAC;AACD;AACA;AACA;AAAI,MAAMC,SAAS,gBAAGnB,QAAA;EAAAK,OAAA;IAAAe,MAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,MAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,OAAA;IAAAC,MAAA;IAAAC,OAAA;EAAA;AAAA;EAAAC,CAAA;IAAAC,CAAA;EAAA;AAAA,CAYrB,CAAC;AACF;AACA;AACA;AAAI,OAAO,MAAMC,qBAAqB,GAAIC,KAAK,IAAG;EAC9C,MAAMC,UAAU,GAAGrB,SAAS,CAAC,CAAC;EAC9B,OAAO;IACHd,OAAO,EAAEJ,YAAY,CAACG,sBAAsB,CAACC,OAAO,EAAEmC,UAAU,CAACnC,OAAO,CAAC,yBAA0B;EACvG,CAAC;AACL,CAAC","ignoreList":[]}
@@ -7,7 +7,7 @@ import { scaleLinear as d3ScaleLinear, scaleBand as d3ScaleBand, scaleUtc as d3S
7
7
  import { useId } from '@fluentui/react-utilities';
8
8
  import { tokens } from '@fluentui/react-theme';
9
9
  import { CartesianChart, Legends, ChartPopover } from '../../index';
10
- import { ChartTypes, getAccessibleDataObject, XAxisTypes, getTypeOfAxis, tooltipOfAxislabels, formatScientificLimitWidth, getBarWidth, getScalePadding, isScalePaddingDefined, calculateAppropriateBarWidth, useRtl, areArraysEqual, calculateLongestLabelWidth } from '../../utilities/index';
10
+ import { ChartTypes, getAccessibleDataObject, XAxisTypes, getTypeOfAxis, tooltipOfAxislabels, formatScientificLimitWidth, getBarWidth, getScalePadding, isScalePaddingDefined, calculateAppropriateBarWidth, useRtl, areArraysEqual, calculateLongestLabelWidth, findVerticalNumericMinMaxOfY, createNumericYAxis, domainRangeOfVerticalNumeric, domainRangeOfDateForAreaLineVerticalBarChart, domainRangeOfXStringAxis, createStringYAxis } from '../../utilities/index';
11
11
  var CircleVisbility;
12
12
  (function(CircleVisbility) {
13
13
  CircleVisbility["show"] = "visibility";
@@ -85,6 +85,17 @@ const MIN_DOMAIN_MARGIN = 8;
85
85
  prevPropsRef,
86
86
  _adjustProps
87
87
  ]);
88
+ function _getDomainNRangeValues(points, margins, width, chartType, isRTL, xAxisType, barWidth, tickValues, shiftX) {
89
+ let domainNRangeValue;
90
+ if (xAxisType === XAxisTypes.NumericAxis) {
91
+ domainNRangeValue = domainRangeOfVerticalNumeric(points, margins, width, isRTL, barWidth);
92
+ } else if (xAxisType === XAxisTypes.DateAxis) {
93
+ domainNRangeValue = domainRangeOfDateForAreaLineVerticalBarChart(points, margins, width, isRTL, tickValues, chartType, barWidth);
94
+ } else {
95
+ domainNRangeValue = domainRangeOfXStringAxis(margins, width, isRTL);
96
+ }
97
+ return domainNRangeValue;
98
+ }
88
99
  function _createLine(// eslint-disable-next-line @typescript-eslint/no-explicit-any
89
100
  xScale, // eslint-disable-next-line @typescript-eslint/no-explicit-any
90
101
  yScalePrimary, containerHeight = 0, containerWidth = 0, // eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -159,8 +170,9 @@ const MIN_DOMAIN_MARGIN = 8;
159
170
  // and avoid conveying duplicate info, make these line points non-focusable.
160
171
  "data-is-focusable": _legendHighlighted(lineLegendText),
161
172
  ref: (e)=>circleRef.refElement = e,
162
- onFocus: _lineFocus.bind(item.point, circleRef),
163
- onBlur: _handleChartMouseLeave
173
+ onFocus: (event)=>_lineFocus(event, item.point, circleRef),
174
+ onBlur: _handleChartMouseLeave,
175
+ tabIndex: _legendHighlighted(lineLegendText) ? 0 : undefined
164
176
  });
165
177
  });
166
178
  return /*#__PURE__*/ React.createElement(React.Fragment, null, line, dots);
@@ -305,7 +317,7 @@ const MIN_DOMAIN_MARGIN = 8;
305
317
  });
306
318
  }
307
319
  // Check if the bar legend is highlighted or no legend is highlighted
308
- if (selectedPoint[0].legend && (selectedLegends.includes(selectedPoint[0].legend) || _noLegendHighlighted())) {
320
+ if (selectedLegends.includes(selectedPoint[0].legend) || _noLegendHighlighted()) {
309
321
  // Add callout data for the bar
310
322
  YValueHover.push({
311
323
  legend: selectedPoint[0].legend,
@@ -354,7 +366,7 @@ const MIN_DOMAIN_MARGIN = 8;
354
366
  setHoverXValue('');
355
367
  }
356
368
  // eslint-disable-next-line @typescript-eslint/no-shadow
357
- function _onBarFocus(point, refArrayIndexNumber, color) {
369
+ function _onBarFocus(event, point, refArrayIndexNumber, color) {
358
370
  // eslint-disable-next-line @typescript-eslint/no-shadow
359
371
  const { YValueHover, hoverXValue } = _getCalloutContentForLineAndBar(point);
360
372
  _refArray.forEach((obj, index)=>{
@@ -379,7 +391,7 @@ const MIN_DOMAIN_MARGIN = 8;
379
391
  mouseEvent.persist();
380
392
  _lineHoverFocus(point, mouseEvent);
381
393
  }
382
- function _lineFocus(point, ref) {
394
+ function _lineFocus(event, point, ref) {
383
395
  if (ref.refElement) {
384
396
  _lineHoverFocus(point, ref.refElement);
385
397
  }
@@ -482,7 +494,6 @@ const MIN_DOMAIN_MARGIN = 8;
482
494
  x: xPoint,
483
495
  y: !isHeightNegative ? yPoint : baselineHeight,
484
496
  width: _barWidth,
485
- "data-is-focusable": !props.hideTooltip && shouldHighlight,
486
497
  height: adjustedBarHeight,
487
498
  ref: (e)=>{
488
499
  _refCallback(e, point.legend);
@@ -492,10 +503,10 @@ const MIN_DOMAIN_MARGIN = 8;
492
503
  "aria-label": _getAriaLabel(point),
493
504
  role: "img",
494
505
  onMouseLeave: _onBarLeave,
495
- onFocus: _onBarFocus.bind(point, index, colorScale(point.y)),
506
+ onFocus: (event)=>_onBarFocus(event, point, index, colorScale(point.y)),
496
507
  onBlur: _onBarLeave,
497
508
  fill: point.color && !useSingleColor ? point.color : colorScale(point.y),
498
- tabIndex: point.legend !== '' ? 0 : undefined,
509
+ tabIndex: !props.hideTooltip && shouldHighlight ? 0 : undefined,
499
510
  opacity: shouldHighlight ? 1 : 0.1,
500
511
  rx: props.roundCorners ? 3 : 0
501
512
  }), _renderBarLabel(xPoint, yPoint, point.y, point.legend, isHeightNegative));
@@ -568,10 +579,9 @@ const MIN_DOMAIN_MARGIN = 8;
568
579
  onMouseOver: (event)=>_onBarHover(point, colorScale(point.y), event),
569
580
  onMouseLeave: _onBarLeave,
570
581
  onBlur: _onBarLeave,
571
- "data-is-focusable": !props.hideTooltip && shouldHighlight,
572
- onFocus: _onBarFocus.bind(point, index, colorScale(point.y)),
582
+ onFocus: (event)=>_onBarFocus(event, point, index, colorScale(point.y)),
573
583
  fill: point.color ? point.color : colorScale(point.y),
574
- tabIndex: point.legend !== '' ? 0 : undefined,
584
+ tabIndex: !props.hideTooltip && shouldHighlight ? 0 : undefined,
575
585
  rx: props.roundCorners ? 3 : 0,
576
586
  opacity: shouldHighlight ? 1 : 0.1
577
587
  }), _renderBarLabel(xPoint, yPoint, point.y, point.legend, isHeightNegative));
@@ -633,7 +643,6 @@ const MIN_DOMAIN_MARGIN = 8;
633
643
  className: classes.opacityChangeOnHover,
634
644
  y: !isHeightNegative ? yPoint : baselineHeight,
635
645
  width: _barWidth,
636
- "data-is-focusable": !props.hideTooltip && shouldHighlight,
637
646
  height: adjustedBarHeight,
638
647
  ref: (e)=>{
639
648
  _refCallback(e, point.legend);
@@ -643,10 +652,10 @@ const MIN_DOMAIN_MARGIN = 8;
643
652
  "aria-label": _getAriaLabel(point),
644
653
  role: "img",
645
654
  onMouseLeave: _onBarLeave,
646
- onFocus: _onBarFocus.bind(point, index, colorScale(point.y)),
655
+ onFocus: (event)=>_onBarFocus(event, point, index, colorScale(point.y)),
647
656
  onBlur: _onBarLeave,
648
657
  fill: point.color && !useSingleColor ? point.color : colorScale(point.y),
649
- tabIndex: point.legend !== '' ? 0 : undefined,
658
+ tabIndex: !props.hideTooltip && shouldHighlight ? 0 : undefined,
650
659
  rx: props.roundCorners ? 3 : 0,
651
660
  opacity: shouldHighlight ? 1 : 0.1
652
661
  }), _renderBarLabel(xPoint, yPoint, point.y, point.legend, isHeightNegative));
@@ -892,6 +901,7 @@ const MIN_DOMAIN_MARGIN = 8;
892
901
  points: _points,
893
902
  chartType: ChartTypes.VerticalBarChart,
894
903
  xAxisType: _xAxisType,
904
+ createYAxis: createNumericYAxis,
895
905
  calloutProps: calloutProps,
896
906
  tickParams: tickParams,
897
907
  ..._isHavingLine && _noLegendHighlighted() && {
@@ -900,8 +910,11 @@ const MIN_DOMAIN_MARGIN = 8;
900
910
  legendBars: legendBars,
901
911
  datasetForXAxisDomain: _xAxisLabels,
902
912
  barwidth: _barWidth,
913
+ createStringYAxis: createStringYAxis,
903
914
  getmargins: _getMargins,
915
+ getMinMaxOfYAxis: findVerticalNumericMinMaxOfY,
904
916
  getGraphData: _getGraphData,
917
+ getDomainNRangeValues: _getDomainNRangeValues,
905
918
  getAxisData: _getAxisData,
906
919
  onChartMouseLeave: _handleChartMouseLeave,
907
920
  getDomainMargins: _getDomainMargins,