AChartEngine graph using two y axis - axis

I am currently trying to create a graph using AChartEngine containing two y-axis (one to the left, one to the right). Yet, I cannot seem to figure out how I can actually add the second y-Axis. An XYMultipleSeriesRenderer only has got one setYTitle() method.
Has someone ever achieved this and can give me a hint?
Thanks,
Matthias

You can do that, indeed. Please see an example for this here.
The result looks like
.

Related

echarts: How to get outward facing labels with polar bar\scatter chart

I want to have a circular chart, either bar or scatter, similar to this one in the examples ..
but I want the labels (ie. the 10p, 11p, 12p) to be pointing outwards similar to how it is on this tree chart, also from the examples,
does anyone know how to do this? thanks v much in advance for any help.

turn off point values in radar chart

I'm using Chart-Js and am trying to create a radar chart. How do you remove the point values in the image below?
I'm needing to remove the numbers from the dots in the graph. I'm using the default implementation of ng2-charts which is an Angular plugin for Chart.js. I solved the problem by adding this:
Chart.defaults.global.defaultFontSize = 0;
This is probably not the best solution, but it got me past this hump.
Thanks

Label on bars in JFreeChart Bar Graph

Please consider following graph :
The above bar graph is built using jfreechart. I have two questions:
1) Values (1,5,4 etc.)are printed on the top but within the bars.How to display these on the top but above the bars?
2)Each value is printed on the bars in horizontal manner. How to display them in proper vertical manner?
Thanks...
You should take a look at ItemLabelPosition, as explained here.
It is a property on the BarRenderer for the given chart. Try experimenting with the different values for the desired result.
Expanding on #Jes's helpful suggestion, you can see how ChartFactory.createBarChart() uses ItemLabelPosition in the relevant source code. More on the label generator parameters may be found here.

Core-plot, label length

I've a little problem on my graph when using core-plot.
I plot my datas using 2 arrays, 1 for Y axe and 1 for X axe, classic.
My problem is that I have values like this:
Values Array : (
"0.105814",
"0.105828",
"0.1058",
"0.105814",
"0.1058",
"0.105793",
"0.105779",
"0.10575",
"0.10575",
"0.10558"
And when I display the graph, I just see that:
And I don't want one "0,1" but the entire value. I didn't find the parameter so if someone know, I guess it's not really complicated.
Thanks for any help!
PS: And I know it's not "label" like labels are used in core-plot but I don't know how to call it :P
And sorry for my English.
Each axis has a property called labelFormatter. This is a standard NSNumberFormatter. You can create a new formatter that formats the labels any way you want. See Apple's docs for details.

how to restrict scrolling for +ve part in cpxygraph

I am new to core plot SDK, implemented core plot in my app. i need to restrict -ve part of graph. i.e always i will have +ve values for graph((1,1),(10,15),(20,15)).i need horizontal , vertical scrolling for +ve part only.So i want to restrict remaining 3 parts of graph. I tried in all ways help less, so posted here. if any one already done with this type requirement, please help me ASAP.
Thanks in advance.
The easiest way to restrict the scrolling ranges is to set the globalXRange and globalYRange properties on your plot space. If you want more control, you can use a plot space delegate. CPTestApp (the Mac version) demonstrates both techniques.