Combine fill and pattern in a pgfplot boxplot?How to combine fill and pattern in a pgfplot bar plot?How to combine fill and pattern in a pgfplot bar plot?plotting two time series with boundsGrouped bar chartComputing the rectangle encompassing a node and a pointHow to hide empty (value 0) ybars with pgfplots?Show mark labels near marks and not centered in ybar interaval graphIs it possible to user-define the percentages for lower/upper whisper in boxplot of PGFPlots?pgfplots: percentage in matrix plotCenter the axes in the coordinate originPGFPlot grouped boxplot with “boxplot prepared”
Why Choose Less Effective Armour Types?
How can I track script which gives me "command not found" right after the login?
Time travel from stationary position?
How to deal with taxi scam when on vacation?
Python if-else code style for reduced code for rounding floats
Is it possible to upcast ritual spells?
Are all passive ability checks floors for active ability checks?
how to draw discrete time diagram in tikz
How to make healing in an exploration game interesting
Interplanetary conflict, some disease destroys the ability to understand or appreciate music
Existence of subset with given Hausdorff dimension
Why did it take so long to abandon sail after steamships were demonstrated?
My Graph Theory Students
Do I need to be arrogant to get ahead?
A sequence that has integer values for prime indexes only:
Employee lack of ownership
How Could an Airship Be Repaired Mid-Flight
It's a yearly task, alright
Professor being mistaken for a grad student
Is it normal that my co-workers at a fitness company criticize my food choices?
A limit with limit zero everywhere must be zero somewhere
Gravity magic - How does it work?
What should tie a collection of short-stories together?
How to terminate ping <dest> &
Combine fill and pattern in a pgfplot boxplot?
How to combine fill and pattern in a pgfplot bar plot?How to combine fill and pattern in a pgfplot bar plot?plotting two time series with boundsGrouped bar chartComputing the rectangle encompassing a node and a pointHow to hide empty (value 0) ybars with pgfplots?Show mark labels near marks and not centered in ybar interaval graphIs it possible to user-define the percentages for lower/upper whisper in boxplot of PGFPlots?pgfplots: percentage in matrix plotCenter the axes in the coordinate originPGFPlot grouped boxplot with “boxplot prepared”
Is it possible to combine a pattern with a background color in Pgfplot boxplot?
documentclassarticle
usepackagepgfplots
pgfplotssetcompat=1.8
usepgfplotslibrarystatistics
usetikzlibrarypatterns
begindocument
begintikzpicture
beginaxis
[
ytick=1,
yticklabels=Index 0,
]
addplot+[
boxplot prepared= median=1, upper quartile=1., lower quartile=0.5, upper whisker=1.5, lower whisker=0. ,
fill=green,
draw=red,
pattern=north east lines,
] coordinates ;
endaxis
endtikzpicture
enddocument
It seems that pattern and fill cannot be combined. Any Idea?
I also tried using postaction
as mentioned in How to combine fill and pattern in a pgfplot bar plot?
addplot+[boxplot prepared= median=1, upper quartile=1., lower quartile=0.5, upper whisker=1.5, lower whisker=0.,
fill=green,
draw=red,
postaction=pattern=north east lines
] coordinates ;
The boxplot result is the following
tikz-pgf pgfplots boxplot
New contributor
add a comment |
Is it possible to combine a pattern with a background color in Pgfplot boxplot?
documentclassarticle
usepackagepgfplots
pgfplotssetcompat=1.8
usepgfplotslibrarystatistics
usetikzlibrarypatterns
begindocument
begintikzpicture
beginaxis
[
ytick=1,
yticklabels=Index 0,
]
addplot+[
boxplot prepared= median=1, upper quartile=1., lower quartile=0.5, upper whisker=1.5, lower whisker=0. ,
fill=green,
draw=red,
pattern=north east lines,
] coordinates ;
endaxis
endtikzpicture
enddocument
It seems that pattern and fill cannot be combined. Any Idea?
I also tried using postaction
as mentioned in How to combine fill and pattern in a pgfplot bar plot?
addplot+[boxplot prepared= median=1, upper quartile=1., lower quartile=0.5, upper whisker=1.5, lower whisker=0.,
fill=green,
draw=red,
postaction=pattern=north east lines
] coordinates ;
The boxplot result is the following
tikz-pgf pgfplots boxplot
New contributor
1
Welcome to TeX-SE! Please have a look at tex.stackexchange.com/a/25032/121799.
– marmot
yesterday
@marmot ... Possibly my mistake, but trying to do it and it doesn't show the pattern but just the green fill. Can you please add it as an answer with the exact code?
– koleygr
yesterday
@marmot: Ok... got it... need the way with nomorepostaction of the accepted answer
– koleygr
yesterday
1
@koleygr Yes, that's true.
– marmot
yesterday
add a comment |
Is it possible to combine a pattern with a background color in Pgfplot boxplot?
documentclassarticle
usepackagepgfplots
pgfplotssetcompat=1.8
usepgfplotslibrarystatistics
usetikzlibrarypatterns
begindocument
begintikzpicture
beginaxis
[
ytick=1,
yticklabels=Index 0,
]
addplot+[
boxplot prepared= median=1, upper quartile=1., lower quartile=0.5, upper whisker=1.5, lower whisker=0. ,
fill=green,
draw=red,
pattern=north east lines,
] coordinates ;
endaxis
endtikzpicture
enddocument
It seems that pattern and fill cannot be combined. Any Idea?
I also tried using postaction
as mentioned in How to combine fill and pattern in a pgfplot bar plot?
addplot+[boxplot prepared= median=1, upper quartile=1., lower quartile=0.5, upper whisker=1.5, lower whisker=0.,
fill=green,
draw=red,
postaction=pattern=north east lines
] coordinates ;
The boxplot result is the following
tikz-pgf pgfplots boxplot
New contributor
Is it possible to combine a pattern with a background color in Pgfplot boxplot?
documentclassarticle
usepackagepgfplots
pgfplotssetcompat=1.8
usepgfplotslibrarystatistics
usetikzlibrarypatterns
begindocument
begintikzpicture
beginaxis
[
ytick=1,
yticklabels=Index 0,
]
addplot+[
boxplot prepared= median=1, upper quartile=1., lower quartile=0.5, upper whisker=1.5, lower whisker=0. ,
fill=green,
draw=red,
pattern=north east lines,
] coordinates ;
endaxis
endtikzpicture
enddocument
It seems that pattern and fill cannot be combined. Any Idea?
I also tried using postaction
as mentioned in How to combine fill and pattern in a pgfplot bar plot?
addplot+[boxplot prepared= median=1, upper quartile=1., lower quartile=0.5, upper whisker=1.5, lower whisker=0.,
fill=green,
draw=red,
postaction=pattern=north east lines
] coordinates ;
The boxplot result is the following
tikz-pgf pgfplots boxplot
tikz-pgf pgfplots boxplot
New contributor
New contributor
edited 10 hours ago
nikosavv
New contributor
asked yesterday
nikosavvnikosavv
62
62
New contributor
New contributor
1
Welcome to TeX-SE! Please have a look at tex.stackexchange.com/a/25032/121799.
– marmot
yesterday
@marmot ... Possibly my mistake, but trying to do it and it doesn't show the pattern but just the green fill. Can you please add it as an answer with the exact code?
– koleygr
yesterday
@marmot: Ok... got it... need the way with nomorepostaction of the accepted answer
– koleygr
yesterday
1
@koleygr Yes, that's true.
– marmot
yesterday
add a comment |
1
Welcome to TeX-SE! Please have a look at tex.stackexchange.com/a/25032/121799.
– marmot
yesterday
@marmot ... Possibly my mistake, but trying to do it and it doesn't show the pattern but just the green fill. Can you please add it as an answer with the exact code?
– koleygr
yesterday
@marmot: Ok... got it... need the way with nomorepostaction of the accepted answer
– koleygr
yesterday
1
@koleygr Yes, that's true.
– marmot
yesterday
1
1
Welcome to TeX-SE! Please have a look at tex.stackexchange.com/a/25032/121799.
– marmot
yesterday
Welcome to TeX-SE! Please have a look at tex.stackexchange.com/a/25032/121799.
– marmot
yesterday
@marmot ... Possibly my mistake, but trying to do it and it doesn't show the pattern but just the green fill. Can you please add it as an answer with the exact code?
– koleygr
yesterday
@marmot ... Possibly my mistake, but trying to do it and it doesn't show the pattern but just the green fill. Can you please add it as an answer with the exact code?
– koleygr
yesterday
@marmot: Ok... got it... need the way with nomorepostaction of the accepted answer
– koleygr
yesterday
@marmot: Ok... got it... need the way with nomorepostaction of the accepted answer
– koleygr
yesterday
1
1
@koleygr Yes, that's true.
– marmot
yesterday
@koleygr Yes, that's true.
– marmot
yesterday
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
nikosavv is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f479500%2fcombine-fill-and-pattern-in-a-pgfplot-boxplot%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
nikosavv is a new contributor. Be nice, and check out our Code of Conduct.
nikosavv is a new contributor. Be nice, and check out our Code of Conduct.
nikosavv is a new contributor. Be nice, and check out our Code of Conduct.
nikosavv is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f479500%2fcombine-fill-and-pattern-in-a-pgfplot-boxplot%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Welcome to TeX-SE! Please have a look at tex.stackexchange.com/a/25032/121799.
– marmot
yesterday
@marmot ... Possibly my mistake, but trying to do it and it doesn't show the pattern but just the green fill. Can you please add it as an answer with the exact code?
– koleygr
yesterday
@marmot: Ok... got it... need the way with nomorepostaction of the accepted answer
– koleygr
yesterday
1
@koleygr Yes, that's true.
– marmot
yesterday