Improve MChart.getData response by using camel case
Description
MChart.getData is returning the values using Kebab-case, for instance, chart-type, domain-label.
In front-end languages, such as JavaScript, this is not the convention and is not what the front-end developer expects to receive. So, camelCase is more common in JavaScript-based APIs because it matches how objects are usually structured. For instance, you cannot directly use, response.chart-type.
The purpose of this ticket is to change those properties to camelCase
MChart.getData is returning the values using Kebab-case, for instance, chart-type, domain-label.
In front-end languages, such as JavaScript, this is not the convention and is not what the front-end developer expects to receive. So, camelCase is more common in JavaScript-based APIs because it matches how objects are usually structured. For instance, you cannot directly use, response.chart-type.
The purpose of this ticket is to change those properties to camelCase