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 Michael Chirlin, I think that this can be resolved by using <b>{point.weight}</b> in tooltip.pointFormat.
I haven't understood all of the code, but in some cases <b>{point.y}</b> is used, I think incorrectly.
I hope this helps.
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.
the xml file in this plugin appears to have the wrong name:
-<appian-component-plugin key="com.appiancs.plugins.highcharts" name="Highchart Component">
Hello, I am using the wordCloudField() function.
This is my set of data:
series: { { name: "test1", weight: 50 }, { name: "test2", weight: 20 }, { name: "test3", weight: 50 }, { name: "test4", weight: 10 }, { name: "test5", weight: 35 } }
When I hover a word in the resulting chart, I see for example:
test 1Occurrences:
But the number of occurrences never appears, I would expect to see the weight of that word.
Is this a bug?
Thank you