Tell me more ×
Mathematica Stack Exchange is a question and answer site for users of Mathematica. It's 100% free, no registration required.

I am taking here just a modified example from the Mathematica documentation of ListContourPlot, because I have in principle the same problem:

data = Table[{x = RandomReal[{-2, 2}], y = RandomReal[{-2, 2}], 
    Sin[x y]}, {1000}];

ListContourPlot[data, 
 PlotLegends -> 
  Placed[BarLegend[Automatic, LegendMargins -> {{0, 0}, {10, 5}}, 
    LegendLabel -> "z-value", 
    LabelStyle -> {Italic, FontFamily -> "Helvetica"}], Above], 
 ImageSize -> Medium]

I get the following:

ContourPlot

Making the legend image size bigger, one can see some numbers at the left hand side.

Legend

I am using Mathematica 9 and I really don't know how to remove that, I have tried everything.

I am aware of more advanced and customizable solutions like:this

But I really just want to do something simple and fast and don't want to start with that approach.

share|improve this question
fyi, these side numbers do NOT show up in V 9.01. Screen shot: !Mathematica graphics I am on windows 7 – Nasser Mar 6 at 15:48
Hmm, yes I have Mathematica 9.0.1.0 for Linux – Santi Mar 6 at 15:57
Never mind, you answered my question. – rcollyer Mar 6 at 15:58
maybe start Mathematica with mathematica -clean and try evaluating again – chuy Mar 6 at 15:58
1  
I forgot to mention:at the beginning it was only happening with triplets of values and not with an array of heights. Then it started happening also for the latter case. I will try to restart mathematica soon and check again. – Santi Mar 6 at 16:21
show 6 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.