Hello
I have the following customizing questions on charts:
ind regards
Randolph
Hello, Randolph,
Thank you for contacting us.
#fm-yAxis-label {
display: none;
}
#fm-xAxis > text {
display: none;
}
In case such labels need to be overwritten, we would like to kindly draw your attention to the caption
property that specifies the custom caption of the hierarchy instead of using its name as a caption. The caption can be specified using the mapping
object.
Please note that such captions are going to be displayed instead of the hierarchy's name on the grid as well.
More information about the mapping
object in our documentation.
#fm-chart-title
- for chart title#fm-grid-title
- for grid titleFlexmonster provides an option to hide aggregation labels like Total Sum of
, Sum of
, etc. in the column/row titles.
This can be done by setting the showAggregationLabels
parameter to false
, for example:
options: {
showAggregationLabels: false
}
Here is a JSFiddle example for illustration.
Also, the grand total caption can be overwritten as well using the grandTotalCaption
property.
It should be represented as a property of an element of a measures
array. Such an array is a property of the slice
object. More information about the slice
object and its properties (including grandTotalCaption
) can be found in our documentation.
Please check out an example demonstrating all approaches described above.
Do not hesitate to contact us in case additional questions arise.
Best regards,
Illia
Thank you!
Example and the hint on showAggregationLevel did the trick.