From c155f7d18420492b748c85c989702a5827a16174 Mon Sep 17 00:00:00 2001 From: kudit Date: Thu, 6 Mar 2014 17:22:40 -0500 Subject: [PATCH] Update OVGraphPlotView.h change this to double because if there are more than the number of available pixels in a column, all the columns will be 0 height. --- OVGraphView/OVGraphView/OVGraphPlotView.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OVGraphView/OVGraphView/OVGraphPlotView.h b/OVGraphView/OVGraphView/OVGraphPlotView.h index ecd2b81..68c1785 100644 --- a/OVGraphView/OVGraphView/OVGraphPlotView.h +++ b/OVGraphView/OVGraphView/OVGraphPlotView.h @@ -11,7 +11,7 @@ #import "OVGraphYIndicatorView.h" @class OVPlotScrollView; @interface OVGraphPlotView : UIView { - int yscale; + double yscale; // change this to double because if there are more than the number of available pixels in a column, all the columns will be 0 height. int spacebetweenpoints; UIColor *opaquecolor; UIColor *lightercolor;