Guest User

Untitled

a guest
Jan 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. images = ExampleData[{"TestImage", #}] & /@ {"Lena", "Elaine", "Mandrill"};
  2.  
  3. BarChart[{1, 2, 3}, ChartLabels ->
  4. Placed[Thumbnail[#, Tiny] & /@ images, Axis, Panel[#, FrameMargins -> 0] &]]
  5.  
  6. BarChart[{1, 2, 3},
  7. ChartLabels -> Placed[images, Axis, Framed[Magnify[#, .3], FrameStyle -> None] &]]
  8.  
  9. BarChart[{1, 2, 3}, ChartLabels -> (Framed[Magnify[#, .3], FrameStyle->None] & /@ images)]
  10. BarChart[{1, 2, 3}, ChartLabels -> Placed[Pane[Magnify[#, .1]] & /@ images, Axis]]
  11. BarChart[{1, 2, 3}, ChartLabels->Placed[Framed[Magnify[#, .3],
  12. FrameStyle -> None]& /@ images, Axis]]
  13.  
  14. images = ExampleData[{"TestImage", #}] & /@ {"Lena", "Mandrill"};
  15.  
  16. BarChart[{{1, 2, 3}, {4, 5, 6}}, ChartElements -> {images, None}]
Add Comment
Please, Sign In to add comment