Y Axis and value on top of bars - pentaho-cde

How to show the y-axis and values in top of each bars using pentaho cde charts.
PFA.

Related

How to center the Y axis label in scatter chart?

Currently the Y axis labels are align with the "axisLine":
not centered
Is there a way to make them row centered like in the photo:
centered
Default example of scatter chart: https://echarts.apache.org/examples/en/editor.html?c=scatter-simple
I found the solution for my problem when I changed the yAxis type to "category":
yAxis: {type:"category"}

line chart issue in dc.js when y value is 0

in dc.js line chart ,when all y value is zero corresponding to the x axis value line is not drawing. it just displying xaxis and y-axis without ticks.Is it possible to draw line on the x axis with corresponding y value as 0 with x-axis name(field name)?

Display Y Axis label below the Y Axis values on Kendo Charts

I have a multi axis chart. I would like to display each Y Axis label below the Y-Axis values. Is this possible in Kendo?

name on y axis morris chart

I've a morris line chart and I would like to show 'population' on y-axis like this.

Add a Second Y Axis

Is there a straightforward way to add a second Y-axis to a chart model? I see that the linePlusBar chart has this feature (via y1Axis y2Axis and forceY) but is there a simple way to add it to other models? I would like to use it for the lineChart or the scatter models.
Same X axis, different Y value need double Y axis. You could try this:
plot(x,y1......,axes=F)
axis(2,....) # build the left Y axis
par(new=T) # means that the next chart will be draw on the picture you draw above
plot(x,y2......,axes=F)
axis(4,....) # build the right Y axis

Resources