You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm also having the same issue with subscale divisions specifically on scaleSubdivisions property. My setup is maxValue = 10.0, scaleDivisions = 8.0, scaleSubdivisions = 4.0. It ends up having may scaleDivisions.
'drawScale:' only draw (main) scale divisions on some condition( min:0 ~ max:1 or max value is not multiple of 10, ex. 732)
i modify code that determine main or sub divisions. see below
....
int subDivs = (int)_scaleSubdivisions;
...
// Division
//if ((abs(mod - 0) < 0.000001) || (abs(mod - div) < 0.000001))
if(i == 0 || i == (totalTicks-1) || 0 == (i % subDivs) )
{
The text was updated successfully, but these errors were encountered: