0
votes
0answers
48 views

aiChart Y-axis points drawn are not what I'm giving to series

I'm working on aiChart in android, everything is fine but there is small issue regarding points displayed on Y-Axis, // giving Y-Axis range points, now display graph from -20 to 100 for(int i = ...
0
votes
0answers
88 views

windows forms nice 3d graph [closed]

Need to do a small application with line charts. The windows form char control seem to do the trick, but I would like to ask for advice, or if anyone now a 3rd party easy to use, and reasonable priced ...
2
votes
2answers
554 views

Google Charts - Curved Line Chart incorrectly dips below 0

I have a Google line chart, I set 'curveType': 'function' so the graph is curved and has a nice appearance. My problem is that when a data point has a value of 0, followed by a following high value, ...
1
vote
1answer
284 views

Android: Creating two vertical line cursors using aChartEngine Line Graph

So basically I want to create two cursors on our line graph depicted by vertical lines. Cursor A and Cursor B. We need the cursors to trace along the points of the graph on the X-axis (coloring the ...
1
vote
2answers
3k views

Android Line chart/graph API

I need to show progressive numeric stats to my Line Graph/Chart. Please share your opinion and advice. Please also make a note that I prefer if there would be a native API. rohit
1
vote
1answer
223 views

Shift the origin from (0,0) to (0,50) in JFreeChart

As shown in image the graph is from line y=0, here i want to plot a graph from y=50, how can i specify this in JFreeChart? Here is Some Code: public class Profile { double last=0; ...
1
vote
1answer
373 views

How to scale a multi-line Google chart to have maximums at the same height?

I'm using Google Chart API to display a multi-line chart in my application. The graph shows daily income in several currencies. As you can see, there is a problem when the exchange rate between the ...
0
votes
1answer
653 views

Problem in line chart plotting with core plot

I have y axis with numbers of total test and x axis for time The following is the code I am using to plot: - (NSUInteger)numberOfRecordsForPlot:(CPPlot *)plot { NSUInteger recordplot; ...
1
vote
1answer
542 views

symbol at particular location in line chart with core plot

I want to draw line chart using core plot i have x-axis with time (1,2,3,...13,14...00) and y-axis with numbers(0-50-100-150-200-....500) now at each coordinate(x,y) i want to put symbol like circle ...
0
votes
1answer
691 views

Flex line chart data points

I am always displaying the data points of a flex line chart using itemRenderer for LineSeries. The problem I am facing is, the first and the last datapoints are not clearly visible. Please find the ...
0
votes
7answers
521 views

Best way to take data and throw it in a graph?

I want to take data from a table that'll be almost exactly similiar to the one below, but have it in a line graph. The date values would be on the Y-axis, and it would plot the XP values on the ...