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
ad823de8
Commit
ad823de8
authored
Feb 07, 2013
by
David Schnur
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #937 from jamiehs/issue-842-cherry-pick
Fix inability to set the point lineWidth to 0.
parents
9108c292
c8335114
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
jquery.flot.js
jquery.flot.js
+9
-0
No files found.
jquery.flot.js
View file @
ad823de8
...
@@ -2092,6 +2092,15 @@ Licensed under the MIT license.
...
@@ -2092,6 +2092,15 @@ Licensed under the MIT license.
sw
=
series
.
shadowSize
,
sw
=
series
.
shadowSize
,
radius
=
series
.
points
.
radius
,
radius
=
series
.
points
.
radius
,
symbol
=
series
.
points
.
symbol
;
symbol
=
series
.
points
.
symbol
;
// If the user sets the line width to 0, we change it to a very
// small value. A line width of 0 seems to force the default of 1.
// Doing the conditional here allows the shadow setting to still be
// optional even with a lineWidth of 0.
if
(
lw
==
0
)
lw
=
0.0001
;
if
(
lw
>
0
&&
sw
>
0
)
{
if
(
lw
>
0
&&
sw
>
0
)
{
// draw shadow in two steps
// draw shadow in two steps
var
w
=
sw
/
2
;
var
w
=
sw
/
2
;
...
...
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