Hello,
Can anyone help me in this:
How to hide these categories text(Qt1, Qt2, Qt3, Qt4) from column chart?
Also, numbers/range(0-100) from y axis column?
Note: For this column chart configuration, I am using records.
Thanks
Discussion posts and replies are publicly visible
Hi manjit.1486 You can use
xAxisStyle (Text): Determines how to display the labels and axis separators for the X-Axis. Valid values: "STANDARD" (default), "NONE".
yAxisStyle (Text): Determines how to display the labels, axis separators, and grid lines for the Y-Axis. Valid values: "STANDARD" (default), "MINIMAL", "NONE".
to hide these data lables
Okay, thanks. Actually only yAxisStyle and xAxisStyle wasn't working before. Rest is working fine.
HI Abhishek Karumuru Could you please tell me how to hide or remove this 0 data labels from column chart?This is basically shows zero records of categories. Please suggest..
Hi Abhishek Karumuru and Mathieu Drouin can you please suggest?
I think you will have to remove these values from the underlying data. It might be possible that you need to query the data separately and feed it into the chart manually.
a!localVariables( local!data1:a!queryEntity( entity: cons!INN_DSE_CASE, query: a!query( aggregation: a!queryAggregation( { { a!queryAggregationColumn(field: "status", isGrouping: true()), a!queryAggregationColumn( field: "stage", isGrouping: false, aggregationFunction: "COUNT", alias: "count" ), } } ), paginginfo: a!pagingInfo(1, - 1), ) ), a!columnChartField( label: "Column Chart", categories: {"a","b","c"}, series: a!forEach( items: local!data1, expression: a!chartSeries(label: "Chart", data: fv!item.status) ), stacking: "NONE", showLegend: true, showTooltips: true, labelPosition: "ABOVE", colorScheme: "RAINFOREST", height: "MEDIUM", xAxisStyle: "NONE", yAxisStyle: "NONE" ) )