Guest User

Untitled

a guest
Oct 18th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. chart1 = BarChart[
  2. Join[Table[{0, 0}, {7}], {{1, 3}}],
  3. ChartLabels -> {Placed[Append[Table["", {7}], "word"], Below], None},
  4. ChartLegends -> {None, {"top", "bottom"}},
  5. ChartLayout -> "Stacked",
  6. ImagePadding -> 10
  7. ]
  8. chart2 = BarChart[
  9. Append[Range[7], 0],
  10. ChartLabels -> Append[Range[7], ""],
  11. ImagePadding -> 10
  12. ]
  13. Overlay[{chart1, chart2}]
Add Comment
Please, Sign In to add comment