Search the Community
Showing results for tags 'y axis'.
Found 2 results
-
y axis Y axis alignment to left and wrap long text in Heatmap
Apurva posted a topic in Using PowerCharts XT
Hi, I've created a Heatmap, it's X axis is at top (horizontal) and Y axis is at left side (vertical). I need to know if following is possible, as I tried so many options but nothing worked. 1. Align the y axis lables to the left instead of right, 2. Wrap the lables for longer texts 3. Can I have a fixed space to fit the y axis? Please let me know. Thanks Apurva -
Hi, I am trying to create a line chart and need to set y axis max and min values explicitly. I have three data series in the chart. A numerator, a denominator, and a metric which is equal to (numerator/denominator)*100. My numerator values are very high (~1000000) and denominator value is very high too (~850000) with the metric value always being less than 100 (In this example it would equal 85). Because the numerator and denominatorvalues are very high, the scale on the y axis is way out of whack. I don't need to see the lines for numerator and denominator, only have their values in the hover over when hovering over the points on the metric line. Therefore if I could force the scale on the y axis to something like this it would be perfect: chart.yaxisminValue = -50 chart.yaxismaxValue = 150 I can set these chart attributes in the JavaScript and it works fine with only the metric value in the chart. However, when I add my numerator and denominator data it overrides the manual setting of the y axis max/mins and goes out of whack again. Is there a way to not allow the automatic override of the yaxis max/mins? Again, the lines for this data falling out of visibility is not an issue. Thanks! TP