When we have multiple values in a chart, is there a way to show multiple of them together in the chart like a comparison? For example in this JSFiddle: https://jsfiddle.net/mt3u0kdo/2/ we have 2 values, Sum of Price and Count of Product code. We want an option to show both the values in the chart so that the user can compare the values of one country with the other.
If the option does not exist yet, I wanted to know if there is any plan in the roadmap to implement this feature.
Hello,
Thank you for reaching out to us.
Flexmonster allows displaying multiple measures at the same time on charts for the following chart types:
Using the last checkbox in the Charts dropdown, you can enable multiple measures via the UI.
Also, it can be configured programmatically by setting the multipleMeasures
property of the ChartOptionsObject to true
. For example:
report: {
// other configurations
options: {
chart: {
type: "column",
multipleMeasures: true
}
}
}
You are welcome to check the following JSFiddle for reference: https://jsfiddle.net/flexmonster/ae38j9xv/.
Please let us know if it works for you. Looking forward to hearing from you.
Kind regards,
Nadia
Thank you so much this is exactly what I wanted.
Hello,
Thank you for the feedback!
We are glad to hear that it works for you.
Do not hesitate to contact us if any questions arise.
Kind regards,
Nadia