We have changed our pricing. Flexmonster Software License Agreement was also updated (list of changes)

Unable to do comparison of different values in charts

Answered
Amogh Arsekar asked 3 days ago

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.

3 answers

Public
Nadia Khodakivska Nadia Khodakivska Flexmonster 2 days ago

Hello,

Thank you for reaching out to us.

Flexmonster allows displaying multiple measures at the same time on charts for the following chart types:

  • Column
  • Bar
  • Line
  • Scatter

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

Public
Amogh Arsekar 2 days ago

Thank you so much this is exactly what I wanted.

Public
Nadia Khodakivska Nadia Khodakivska Flexmonster 1 day ago

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

Please login or Register to Submit Answer