I am using LineGraph to draw datapoints and then creating curves. The X,Y axis lowest datapoints are allways 0 but the symbol gets cut off like in picture #1. I need it to look more like picture #2, where you can see the whole datapoint but I need the X,Y axis tickmarks to only start at 0 and ignore the values below 0. Is this even possible with LineGraph.
Picture #1
Picture #2
This is how I am setting the values:
xAxis.setUpperBound(maxTime);
xAxis.setLowerBound(minX - (maxTime * 0.01));
xAxis.setTickUnit(xAxis.getUpperBound() * 0.333 - ((maxTime * 0.01)));
yAxis.setUpperBound(maxActivity);
yAxis.setTickUnit(maxActivity / 4);
yAxis.setLowerBound(minY - (maxActivity * 0.05));
But then the tickmarks will start from the calculated values of the lower bounds instead of at 0