manova-1 Report post Posted December 9, 2013 When I render a Bubble Chart in Javascript-only mode I get a graphics failure in which the X-Axis names can't be hidden. See the following example where the error can be easily reproduced by changing the render engine. http://jsfiddle.net/socialhack/R7KAG/5/ Share this post Link to post Share on other sites
Swarnam Report post Posted December 10, 2013 Hey, In JavaScript mode, the values being displayed along X axis is the startValue of vTrendLines.The startValue is not being displayed in Flash and it has been identified as a bug and internally fixed. To hide the values appearing in X axis, please try setting "displayValue" attribute of vTrendLines as follows. Ref.Code: "vTrendLines": [ { "line": [ { "alpha": 80, "startValue": 0, "color": "FF0000", "endValue": 0.25, "displayValue": " " }, { "alpha": 80, "startValue": 0.25, "color": "FFA500", "endValue": 0.5, "displayValue": " " }, { "alpha": 80, "startValue": 0.5, "color": "FFFF00", "endValue": 0.75, "displayValue": " " }, { "alpha": 80, "startValue": 0.75, "color": "008000", "endValue": 1, "displayValue": " " } ] } ] Share this post Link to post Share on other sites
manova-1 Report post Posted December 10, 2013 great, that solves the problem. Thank you! Share this post Link to post Share on other sites
manova-1 Report post Posted December 10, 2013 Another thing. same macro. How can I get the x-Axis-Name and y-Axis-Name to have the same distance to their axes? This time it works as expected in Javascript. but Flash is not behaving differently. I already tried combinations of xAxisNamePadding yAxisNamePadding labelPadding chartLeftMargin and Chart height. nothing worked so far. JS Fiddle example: http://jsfiddle.net/socialhack/B2FJD/1/ Share this post Link to post Share on other sites