EvotecIT / PSWriteHTML

PSWriteHTML is PowerShell Module to generate beautiful HTML reports, pages, emails without any knowledge of HTML, CSS or JavaScript. To get started basics PowerShell knowledge is required.
MIT License
826 stars 106 forks source link

Add support for multiline labels #426

Closed mg07647 closed 9 months ago

mg07647 commented 9 months ago

Add support for multiline label names as shown in this link:

PrzemyslawKlys commented 9 months ago

You can already do that:

New-ChartAxisX -Name 'Jan', 'Feb', 'Mar', @('Apr','Apr1'), 'May', 'Jun', 'Jul', 'Aug', 'Sep'
mg07647 commented 9 months ago

In my case I changed the $Name parameter in New-ChartBar line 13875 from [string] to [Array], and that worked! Thanks for pointing out a fix.