Why is the value of y bar larger than the actual range of y in stacked bar plot? - bar-chart

I am trying to plot the stacked bar plot for the data frame, with x equals to the year release, and y equals to count. But why the range of y in the plot is almost 1000? The largest count value should be 33.
enter image description here

Related

SSRS 100% column chart not showing some data

I have a 100% Column Chart in SSRS showing depots on the x axis and 5 values on the y axis. It doesn't show some of the depots that has values though. I've made sure that nothing is being hidden anywhere and also put the expressions for the values field in the label of the x axis to make sure the values pull through. There are only two depots that has no values but there are about 5 others showing as if there is nothing. When I sort the x axis from a - z it slots all the depots in at the right place, so it does know that there are values in it.

Scale the x axis only in octave plot

I am using the Octave plot function to plat a 2D graph. I want to scale the x axis by 2x (no change to y axis). i.e. the distance between each unit in x axis is doubled.
How do I do that in Octave?
You have to use the parameter "dataaspectratio" of the function "set" to modify the aspect ratio of the plot (as the self explaining parameter name indicates). dataaspectratio accepts a 3-element vector, with the scales for X,Y and Z, so if you want X to be double as the Y axis scale you should use:
set(gca,'dataaspectratio',[2 1 1])

Transforming data along (x,y) coordinate axis?

I have data like this
x-axis data values
-20.49, -12.23, -9.99, -1.00 0 , 1.12, 2.23, 3.45, 4.56, 8.99, 20.99, 30.23
y-axis data values
10,20,20,40,50,60........
I would like to transform above given data into xy coordinate system.
Please have look at the image.
For eg:
along x-axis (min, max ) data value (-20.49, 30.23),
along y-axis (min, max ) data value (10,60)
now if I want plot data(-20.49, 10) in image,
the X coordinate is going to be =200,
and Y-coordinate going to be = 220.
Like this I want plot all data fits within the range of rectangle.
Hope this gives all details
Thanks
This is more of the math question, not related to any programming language. And speaking about Actionscript 3, it has Y axis going from top to bottom, not from bottom to top. Anyway: If you have two points on an axis that you want to map to screen coordinates of your choice, record xmin as lesser native value, xmax as greater native value, and coordinates as xleft and xright. Then, when you need to receive a screen coordinate for your given x, you calculate the xcoord value as:
xcoord = xleft + (x - xmin)*(xright - xleft)/(xmax - xmin);
Similar approach will net you correct values for the Y axis.

SSRS chart does not show y-axis data labels when values are very small (<1)

I have chart that plots values of Y-axis less than 1 (0.1, 0.24, etc).
When the chart is built, Y-axis label just shows 0 at the origin and no other values along the axis.
My solution was a little ugly. Data series labels show up with the correct % signs, but the % signs do not show up on the Y axis.
Y axis: set Y axis range from 1-100 (or 1-120 so there is room to display the data labels that say 100%) Make sure you set your tick marks to Auto or a number between 1 and 100, otherwise you'll get one long bar of tick marks running all the way up the y axis.
Data series: on the series tab, change your Value Field formula to multiply your data series by 100.
Data series labels: on the series data label properties window > general tab, copy the formula from your data series Value Field into the Label Data value field. round it to 0 decimal points and add &"%" to the end to concatenate a percent to the end of it.
That way the right numbers display for my data series and my Y axis, but the % just doesn't show up on the Y axis. not perfect yet. and too much work.
I just tested this and it seems this happens in SSRS 2005 and not 2008. You can fix this by right clicking on your chart and going to properties. It should bring up the full Chart Properties, go to the Y Axis tab and set Major Gridlines at a value like .25/.5 or whatever you want.

Value on Y Axis of a Bar chart is too large

I have A BAR chart in SSRS which has following vaues..
for 5 points on X-axis values are 100,120,130,123,8000
So the last value is too lagre due to which scale is geeting larger causing chart to look bad...n unreadable for other points...
So is there any way by wiz i can breal the LAST BAR in a bar chart showing it on ongoing manner with data point lable on top of the bar....
i trid it by giving max value on Y axis but it cuases DATA point lable to disappear hence the catual value of the bar is unknown to user.....
Use a logarithmic scale? ;)