How can I display long texts in column name splitted in more rows to avoid overlapping?
It’s not the exact solution you looking for, but there is a feature to enable cell inspection, which pops up a little eye to let you see the full text value in a shortened/truncated column:
Unfortunately it is not applicable for the header just the table data to see the whole value and to make a data copy.
what is your data source? alao please share some sample data not as image but as text
Data source is MySQL.
Here is a short example:
SELECT
Convert(jahr, char) as Jahr,
monat as Monat,
fester_arbeitspreis_kwh as 'fester Arbeitspreis 6,031 ct/kWh [€]',
arbeitspreis_netz_kwh as 'Arbeitspreis Netz 0,322 ct/kWh [€]'
FROM ems.gas_verbrauch_p
where Jahr=2024
ORDER BY jahr, monat
Here is the result:
There are 20 columns need to be displayed so you can imagine how wide is the table panel should be.
When I reduce the width of columns it cuts the text from the header:
And the last column is missing.
I would need this:
So table panel cannot do that so I would recommend you using Business Text plugin with html where you have full control of that kind of stuff
Recent PR addresses text wrapping issue in standard Table panel, but it’s not released yet
Thank you, this can be a solution.
Could you explain me where can I find it and how to use it?
here it is