PaulS Report post Posted March 31, 2016 I'm using the Multi-series Bar 2D and trying to hide the labels. $arrData = array( "chart" => array( "theme" => "fint", "caption" => "Earnings vs Number of Jobs", "subcaption" => $occupation_name, "entityFillHoverColor" => "#cccccc", "numberPrefix" => "$", "showCanvasBorder" => "0", "legendPadding" => "0", "chartLeftMargin" => "0", "chartRightMargin" => "0", "chartTopMargin" => "0", "chartBottomMargin" => "0", "placeValuesInside" => "0", "showLabels" => "0", "labelDisplay" => "none", "valueFontSize" => "11" )); Share this post Link to post Share on other sites
Swarnam Report post Posted April 5, 2016 Hi, "LabelDisplay" is used to customize the alignment of data labels and not to hide the values. For Bar charts, to hide the values, please try setting "showYAxisValues" as "0" in the chart element. Hope this helps. Share this post Link to post Share on other sites