The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Charts - comma as a decimal separator
Dear RapidMiner community,
could you please instruct me on how to set comma as a decimal separator for values shown on the chart?
As far as I understand from the tooltip under Axis style -> Labels style [Label value format] there is a way to format numbers appearing on charts, but I am not able to use this hint.
Additionally: what are available options for formatting chart numbers? Where can I find the overview? Any documentation on that available?
Any help would be appreciated.
Best regards
Maciej Pankiewicz
0
Answers
you can't do it in RapidMiner but you can export a chart as a SVG (scalable vector graphics) image which is an XML document. Then you can search and replace the text objects (e. g. <g class="highcharts-axis-labels highcharts-yaxis-labels" data-z-index="7"> => <text ...>value</text>).
Regards,
Balázs
I don't know how I would solve this with Read XML, as there's no corresponding Write XML. However, it is possible with Read Document, Replace Tokens and Write Document, all from the Text Processing extension.
Example:
Of course, processing XML with regular expressions is a sure path to hilarious errors but in this case it produced meaningful output for me.
Regards,
Balázs