Solve the issue of "fontsize" in tables not Working #30166
+1
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR summary
This pull request resolves an issue where the
fontsize
parameter was not being applied correctly in [component name or function]. The issue caused font size settings to be ignored in certain plot configurations, leading to inconsistent text rendering.Why is this change necessary?
Users were unable to customize text size properly using the
fontsize
parameter. This PR ensures consistent behavior and respects user-defined font sizes.What problem does it solve?
It fixes the incorrect or ignored application of
fontsize
, improving the consistency and user control over plot appearance.What is the reasoning for this implementation?
The bug was caused by [briefly explain the technical reason if known, e.g., "the fontsize parameter being overridden by default settings"]. This change ensures that user-defined values are prioritized.