-
Notifications
You must be signed in to change notification settings - Fork 394
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to set global overflow property to visible? #1013
Comments
Later, by modifying the source code, I changed
to
Export the doc document, the content is displayed normally, not truncated Is there a way for me to change the default value of the overflow property to be visible, currently its default value is inherited, the default is hidden |
I think this only happens with long words (which are common in e.g. German text). Create a predefined style for "label" and set e.g. the whitespace property. and replace
with
inside the element <style name="label" ...>. Duplicate this style twice and choose "text-data" and "text" for the other styles. Finally, it should look like this:
Now you do not longer need to manually change the "Overflow" property in the "advanced" tab for every label or text. You could probably also use a theme in a library and use that theme in the report, instead of adding the 3 styles directly to every report. The "dirty" thing here is that "overflow" cannot be set in the style editor dialog. |
@fadeli1 Does the workaround I proposed work for you? |
See also #916 |
@hvbtup Sorry for the delay, I tested your solution and it works. |
birt version: 4.9.0
Problem description:
I have a table with 10 columns, one of which is the cell content, because the column width causes the text to be truncated, not full, only half of the text is displayed, this happens when exporting the word document
Solution:
The test found that by setting the control property overflow to visible, the text was displayed correctly, and the property defaulted to inheritance
I want to set the global overflow property to default to visible, how can I do this?
The text was updated successfully, but these errors were encountered: