Skip to content

Commit f45bd10

Browse files
authoredFeb 11, 2025
fix(react-charting): Making the tooltip optional (#33807)
1 parent 74464af commit f45bd10

File tree

9 files changed

+245
-452
lines changed

9 files changed

+245
-452
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "patch",
3+
"comment": "Making the tooltip optional",
4+
"packageName": "@fluentui/react-charting",
5+
"email": "120183316+srmukher@users.noreply.github.com",
6+
"dependentChangeType": "patch"
7+
}

‎packages/charts/react-charting/src/components/CommonComponents/CartesianChart.base.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -555,6 +555,7 @@ export class CartesianChartBase
555555
maxWidth={xAxisTitleMaximumAllowedWidth}
556556
wrapContent={wrapContent}
557557
theme={this.props.theme}
558+
showBackground={true}
558559
/>
559560
)}
560561
<g
@@ -604,6 +605,7 @@ export class CartesianChartBase
604605
maxWidth={yAxisTitleMaximumAllowedHeight}
605606
wrapContent={wrapContent}
606607
theme={this.props.theme}
608+
showBackground={true}
607609
/>
608610
)}
609611
</g>
@@ -628,6 +630,7 @@ export class CartesianChartBase
628630
maxWidth={yAxisTitleMaximumAllowedHeight}
629631
wrapContent={wrapContent}
630632
theme={this.props.theme}
633+
showBackground={true}
631634
/>
632635
)}
633636
</svg>

‎packages/charts/react-charting/src/components/DeclarativeChart/__snapshots__/DeclarativeChartRTL.test.tsx.snap

-13
Original file line numberDiff line numberDiff line change
@@ -4167,13 +4167,6 @@ exports[`DeclarativeChart Should render gaugechart in DeclarativeChart 1`] = `
41674167
/>
41684168
</g>
41694169
<g>
4170-
<rect
4171-
fill="#ffffff"
4172-
height="8"
4173-
width="8"
4174-
x="-4"
4175-
y="-4"
4176-
/>
41774170
<text
41784171
aria-hidden="true"
41794172
class=
@@ -4193,12 +4186,6 @@ exports[`DeclarativeChart Should render gaugechart in DeclarativeChart 1`] = `
41934186
420
41944187
</text>
41954188
</g>
4196-
<rect
4197-
height="8"
4198-
width="8"
4199-
x="-4"
4200-
y="-4"
4201-
/>
42024189
<text
42034190
class=
42044191

‎packages/charts/react-charting/src/components/GaugeChart/GaugeChart.base.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,6 @@ export class GaugeChartBase extends React.Component<IGaugeChartProps, IGaugeChar
317317
}}
318318
maxWidth={this._innerRadius * 2 - 24}
319319
wrapContent={this._wrapContent}
320-
theme={this.props.theme}
321320
/>
322321
</g>
323322
{this.props.sublabel && (

0 commit comments

Comments
 (0)