- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2022 02:16 AM
Hi,
The report is displayed in the portal.
I want to increase the size of the part filled with yellow.
Is there a setting method?
Regards,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2022 04:01 AM
Hi Mi,
You can do this using CSS on the Widget Instance. To do this, follow these steps:
(Please note, although the widget is different, same steps can be applied for your report)
On the widget in the Portal, ctrl + right click on the widget and select 'Instance in Page Editor':
You should see (something similar as) the following:
In the CSS field enter the following and press Save:
(change 20px to any size font you want)
g.highcharts-legend-item > text{
font-size: 20px !important;
}
(change g.highcharts-legend-item > text to the element selector of the item you want to resize if above is not working for your widget).
And done:
As this might help others I have created an article of this as well:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2022 03:16 AM
Hello,
As per my understanding i don't think there is any way we can increase the size of it.
Thanks.
Please mark answer correct/helpful based on Impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2022 04:01 AM
Hi Mi,
You can do this using CSS on the Widget Instance. To do this, follow these steps:
(Please note, although the widget is different, same steps can be applied for your report)
On the widget in the Portal, ctrl + right click on the widget and select 'Instance in Page Editor':
You should see (something similar as) the following:
In the CSS field enter the following and press Save:
(change 20px to any size font you want)
g.highcharts-legend-item > text{
font-size: 20px !important;
}
(change g.highcharts-legend-item > text to the element selector of the item you want to resize if above is not working for your widget).
And done:
As this might help others I have created an article of this as well:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2022 04:11 AM
Nice I did saw one community thread earlier where it was mentioned we can do something on the lines of CSS but you explained it well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2022 06:18 AM