-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6101 from s417-lama/pattern_fill_scatter
Add pattern fill for scatter filled area
- Loading branch information
Showing
11 changed files
with
224 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
- Add pattern fill for scatter filled area |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ | ||
"data": [ | ||
{ | ||
"x": [1, 2, 3, 4, 5], | ||
"y": [0.1, 0.3, 0.2, 0.8, 0.7], | ||
"stackgroup": "one", | ||
"fillpattern": { | ||
"fillmode": "overlay", | ||
"shape": "/" | ||
} | ||
}, | ||
{ | ||
"x": [1, 2, 3, 4, 5], | ||
"y": [0.3, 0.2, 0.1, 0.1, 0.2], | ||
"stackgroup": "one", | ||
"fillpattern": { | ||
"fillmode": "overlay", | ||
"shape": "\\" | ||
} | ||
}, | ||
{ | ||
"x": [1, 2, 3, 4, 5], | ||
"y": [0.8, 0.8, 0.6, 0.7, 0.4], | ||
"stackgroup": "one", | ||
"fillpattern": { | ||
"fillmode": "overlay", | ||
"shape": "." | ||
} | ||
}, | ||
|
||
{ | ||
"xaxis": "x2", | ||
"yaxis": "y2", | ||
"x": [1, 2, 3, 4, 5, 6], | ||
"y": [0.1, 0.3, 0.4, 1.1, 0.8, 0.3], | ||
"fill": "tozeroy", | ||
"fillpattern": { | ||
"fillmode": "replace", | ||
"solidity": 0.4, | ||
"size": 12, | ||
"shape": "-" | ||
} | ||
}, | ||
{ | ||
"xaxis": "x2", | ||
"yaxis": "y2", | ||
"x": [1, 2, 3, 4, 5, 6], | ||
"y": [0.8, 0.7, 0.1, 0.6, 0.7, 0.8], | ||
"fill": "tonexty", | ||
"fillpattern": { | ||
"fillmode": "replace", | ||
"solidity": 0.4, | ||
"size": 12, | ||
"shape": "|" | ||
} | ||
} | ||
], | ||
"layout": { | ||
"title": {"text": "Pattern fill for scatter"}, | ||
"width": 800, | ||
"height": 400, | ||
|
||
"grid": { | ||
"rows": 1, | ||
"columns": 2, | ||
"pattern": "independent" | ||
} | ||
} | ||
} |
Oops, something went wrong.