Overview
Providing additional charting options to use with the end user reporting application. These charts can also be used independently, but are structured much like an Appian chart for seamless integration with the existing End User Reporting framework.
Key Features & Functionality
Hello, could an option be added to create a word cloud that only has horizontal words?
This can be done with plotOptions.wordcloud.rotation documented here: https://api.highcharts.com/highcharts/plotOptions.wordcloud.rotation
Specifically to have only horizontal words it can be implemented with:
series: [{ type: 'wordcloud', data, name: 'Occurrences', rotation: { from: 0, to: 0, orientations: 1 }, placementStrategy: 'random' }],
With this rotation the chart appears to be a bit "blocky", so I think it could benefit from the addition of the 'random' placement strategy.
Michael Chirlin please let me know if this is something that could be added, thank you.