Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
F
flot
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
HS-public
flot
Commits
f06fe931
Commit
f06fe931
authored
Jan 13, 2013
by
David Schnur
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #861 from thecountofzero/master
Ensure that tickSize updates on subsequent calls to setupGrid.
parents
92a833ce
a0b1552d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
29 deletions
+36
-29
jquery.flot.js
jquery.flot.js
+36
-29
No files found.
jquery.flot.js
View file @
f06fe931
...
...
@@ -1274,14 +1274,22 @@ Licensed under the MIT license.
if
(
!
axis
.
tickGenerator
)
{
var
maxDec
=
opts
.
tickDecimals
;
var
dec
=
-
Math
.
floor
(
Math
.
log
(
axis
.
delta
)
/
Math
.
LN10
);
axis
.
tickGenerator
=
function
(
axis
)
{
var
maxDec
=
opts
.
tickDecimals
,
dec
=
-
Math
.
floor
(
Math
.
log
(
axis
.
delta
)
/
Math
.
LN10
);
if
(
maxDec
!=
null
&&
dec
>
maxDec
)
dec
=
maxDec
;
var
magn
=
Math
.
pow
(
10
,
-
dec
);
var
norm
=
axis
.
delta
/
magn
;
// norm is between 1.0 and 10.0
var
size
;
var
magn
=
Math
.
pow
(
10
,
-
dec
),
norm
=
axis
.
delta
/
magn
,
// norm is between 1.0 and 10.0
size
,
ticks
=
[],
start
,
i
=
0
,
v
=
Number
.
NaN
,
prev
;
if
(
norm
<
1.5
)
size
=
1
;
...
...
@@ -1305,9 +1313,8 @@ Licensed under the MIT license.
axis
.
tickDecimals
=
Math
.
max
(
0
,
maxDec
!=
null
?
maxDec
:
dec
);
axis
.
tickSize
=
opts
.
tickSize
||
size
;
axis
.
tickGenerator
=
function
(
axis
)
{
var
ticks
=
[],
start
=
floorInBase
(
axis
.
min
,
axis
.
tickSize
),
i
=
0
,
v
=
Number
.
NaN
,
prev
;
start
=
floorInBase
(
axis
.
min
,
axis
.
tickSize
)
do
{
prev
=
v
;
v
=
start
+
i
*
axis
.
tickSize
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment