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
c62cb307
Commit
c62cb307
authored
Jul 17, 2012
by
David Schnur
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Optimize and tidy up calculation of neededColors.
parent
f1f599f6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
18 deletions
+24
-18
jquery.flot.js
jquery.flot.js
+24
-18
No files found.
jquery.flot.js
View file @
c62cb307
...
...
@@ -416,31 +416,36 @@
}
function
fillInSeriesOptions
()
{
var
i
;
// collect what we already got of colors
var
neededColors
=
series
.
length
,
usedColors
=
[],
assignedColors
=
[];
var
neededColors
=
series
.
length
,
maxIndex
=
0
,
i
;
// Subtract the number of series that already have fixed
// colors from the number we need to generate.
for
(
i
=
0
;
i
<
series
.
length
;
++
i
)
{
var
sc
=
series
[
i
].
color
;
if
(
sc
!=
null
)
{
--
neededColors
;
if
(
typeof
sc
==
"number"
)
assignedColors
.
push
(
sc
);
else
usedColors
.
push
(
$
.
color
.
parse
(
series
[
i
].
color
));
neededColors
--
;
if
(
typeof
sc
==
"number"
&&
sc
>
maxIndex
)
{
maxIndex
=
sc
;
}
}
}
// we might need to generate more colors if higher indices
// are assigned
for
(
i
=
0
;
i
<
assignedColors
.
length
;
++
i
)
{
neededColors
=
Math
.
max
(
neededColors
,
assignedColors
[
i
]
+
1
);
// If any of the user colors are numeric indexes, then we
// need to generate at least as many as the highest index.
if
(
maxIndex
>
neededColors
)
{
neededColors
=
maxIndex
+
1
;
}
// produce colors as needed
// Generate as many colors as necessary, using the provided
// colors as a base and alternatingly increasing/decreasing
// their luminosity in steps that grow smaller each time we
// hit the edge of the color space.
var
colors
=
[],
variation
=
0
;
i
=
0
;
while
(
colors
.
length
<
neededColors
)
{
var
c
;
...
...
@@ -464,7 +469,8 @@
}
}
// fill in the options
// Finalize the series options, filling in their colors
var
colori
=
0
,
s
;
for
(
i
=
0
;
i
<
series
.
length
;
++
i
)
{
s
=
series
[
i
];
...
...
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