Horizontal chart bars are cropped











up vote
4
down vote

favorite












I have the following code:



documentclass[11pt,twoside,a4paper]{article}
usepackage{pgfplots}
begin{document}
begin{figure}
smallbegin{tikzpicture}
begin{axis}[
xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,
x axis line style={draw=none},
symbolic y coords={A,B,C,D,E,F,G},
ytick=data, nodes near coords, nodes near coords align={horizontal},
]
addplot coordinates {
(1000,A)
(800,B)
(500,C)
(100,D)
(600,E)
(150,F)
(300,G)
};
end{axis}
end{tikzpicture}
end{figure}
end{document}


which generates a horizontal bar chart. However, Bar A and Bar G are displayed at only half width. How do I make the bar widths the same?



EDIT:



The following is the output:



enter image description here










share|improve this question




























    up vote
    4
    down vote

    favorite












    I have the following code:



    documentclass[11pt,twoside,a4paper]{article}
    usepackage{pgfplots}
    begin{document}
    begin{figure}
    smallbegin{tikzpicture}
    begin{axis}[
    xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,
    x axis line style={draw=none},
    symbolic y coords={A,B,C,D,E,F,G},
    ytick=data, nodes near coords, nodes near coords align={horizontal},
    ]
    addplot coordinates {
    (1000,A)
    (800,B)
    (500,C)
    (100,D)
    (600,E)
    (150,F)
    (300,G)
    };
    end{axis}
    end{tikzpicture}
    end{figure}
    end{document}


    which generates a horizontal bar chart. However, Bar A and Bar G are displayed at only half width. How do I make the bar widths the same?



    EDIT:



    The following is the output:



    enter image description here










    share|improve this question


























      up vote
      4
      down vote

      favorite









      up vote
      4
      down vote

      favorite











      I have the following code:



      documentclass[11pt,twoside,a4paper]{article}
      usepackage{pgfplots}
      begin{document}
      begin{figure}
      smallbegin{tikzpicture}
      begin{axis}[
      xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,
      x axis line style={draw=none},
      symbolic y coords={A,B,C,D,E,F,G},
      ytick=data, nodes near coords, nodes near coords align={horizontal},
      ]
      addplot coordinates {
      (1000,A)
      (800,B)
      (500,C)
      (100,D)
      (600,E)
      (150,F)
      (300,G)
      };
      end{axis}
      end{tikzpicture}
      end{figure}
      end{document}


      which generates a horizontal bar chart. However, Bar A and Bar G are displayed at only half width. How do I make the bar widths the same?



      EDIT:



      The following is the output:



      enter image description here










      share|improve this question















      I have the following code:



      documentclass[11pt,twoside,a4paper]{article}
      usepackage{pgfplots}
      begin{document}
      begin{figure}
      smallbegin{tikzpicture}
      begin{axis}[
      xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,
      x axis line style={draw=none},
      symbolic y coords={A,B,C,D,E,F,G},
      ytick=data, nodes near coords, nodes near coords align={horizontal},
      ]
      addplot coordinates {
      (1000,A)
      (800,B)
      (500,C)
      (100,D)
      (600,E)
      (150,F)
      (300,G)
      };
      end{axis}
      end{tikzpicture}
      end{figure}
      end{document}


      which generates a horizontal bar chart. However, Bar A and Bar G are displayed at only half width. How do I make the bar widths the same?



      EDIT:



      The following is the output:



      enter image description here







      tikz-pgf pgfplots bar-chart






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 2 days ago

























      asked 2 days ago









      qzx

      355111




      355111






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          6
          down vote



          accepted










          enlargelimits option can solve the problem.



          enter image description here



          documentclass[11pt,twoside,a4paper]{article}
          usepackage{pgfplots}
          begin{document}
          begin{figure}
          smallbegin{tikzpicture}
          begin{axis}[
          xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,enlargelimits=0.1,
          x axis line style={draw=none},
          symbolic y coords={A,B,C,D,E,F,G},
          ytick=data, nodes near coords, nodes near coords align={horizontal},
          ]

          addplot coordinates{
          (1000,A)
          (800,B)
          (500,C)
          (100,D)
          (600,E)
          (150,F)
          (300,G)
          };
          end{axis}
          end{tikzpicture}
          end{figure}
          end{document}


          Alternate way



          Another way is to set ymin and ymax.



          enter image description here



          documentclass[11pt,twoside,a4paper]{article}
          usepackage{pgfplots}
          begin{document}
          begin{figure}
          smallbegin{tikzpicture}
          begin{axis}[
          xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,
          ymin={[normalized]-1}, ymax={[normalized]7},
          x axis line style={draw=none},
          symbolic y coords={A,B,C,D,E,F,G},
          ytick=data, nodes near coords, nodes near coords align={horizontal},
          ]

          addplot coordinates{
          (1000,A)
          (800,B)
          (500,C)
          (100,D)
          (600,E)
          (150,F)
          (300,G)
          };
          end{axis}
          end{tikzpicture}
          end{figure}
          end{document}





          share|improve this answer



















          • 1




            Thanks @nidhin.
            – qzx
            2 days ago











          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',
          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
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f460707%2fhorizontal-chart-bars-are-cropped%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          6
          down vote



          accepted










          enlargelimits option can solve the problem.



          enter image description here



          documentclass[11pt,twoside,a4paper]{article}
          usepackage{pgfplots}
          begin{document}
          begin{figure}
          smallbegin{tikzpicture}
          begin{axis}[
          xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,enlargelimits=0.1,
          x axis line style={draw=none},
          symbolic y coords={A,B,C,D,E,F,G},
          ytick=data, nodes near coords, nodes near coords align={horizontal},
          ]

          addplot coordinates{
          (1000,A)
          (800,B)
          (500,C)
          (100,D)
          (600,E)
          (150,F)
          (300,G)
          };
          end{axis}
          end{tikzpicture}
          end{figure}
          end{document}


          Alternate way



          Another way is to set ymin and ymax.



          enter image description here



          documentclass[11pt,twoside,a4paper]{article}
          usepackage{pgfplots}
          begin{document}
          begin{figure}
          smallbegin{tikzpicture}
          begin{axis}[
          xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,
          ymin={[normalized]-1}, ymax={[normalized]7},
          x axis line style={draw=none},
          symbolic y coords={A,B,C,D,E,F,G},
          ytick=data, nodes near coords, nodes near coords align={horizontal},
          ]

          addplot coordinates{
          (1000,A)
          (800,B)
          (500,C)
          (100,D)
          (600,E)
          (150,F)
          (300,G)
          };
          end{axis}
          end{tikzpicture}
          end{figure}
          end{document}





          share|improve this answer



















          • 1




            Thanks @nidhin.
            – qzx
            2 days ago















          up vote
          6
          down vote



          accepted










          enlargelimits option can solve the problem.



          enter image description here



          documentclass[11pt,twoside,a4paper]{article}
          usepackage{pgfplots}
          begin{document}
          begin{figure}
          smallbegin{tikzpicture}
          begin{axis}[
          xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,enlargelimits=0.1,
          x axis line style={draw=none},
          symbolic y coords={A,B,C,D,E,F,G},
          ytick=data, nodes near coords, nodes near coords align={horizontal},
          ]

          addplot coordinates{
          (1000,A)
          (800,B)
          (500,C)
          (100,D)
          (600,E)
          (150,F)
          (300,G)
          };
          end{axis}
          end{tikzpicture}
          end{figure}
          end{document}


          Alternate way



          Another way is to set ymin and ymax.



          enter image description here



          documentclass[11pt,twoside,a4paper]{article}
          usepackage{pgfplots}
          begin{document}
          begin{figure}
          smallbegin{tikzpicture}
          begin{axis}[
          xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,
          ymin={[normalized]-1}, ymax={[normalized]7},
          x axis line style={draw=none},
          symbolic y coords={A,B,C,D,E,F,G},
          ytick=data, nodes near coords, nodes near coords align={horizontal},
          ]

          addplot coordinates{
          (1000,A)
          (800,B)
          (500,C)
          (100,D)
          (600,E)
          (150,F)
          (300,G)
          };
          end{axis}
          end{tikzpicture}
          end{figure}
          end{document}





          share|improve this answer



















          • 1




            Thanks @nidhin.
            – qzx
            2 days ago













          up vote
          6
          down vote



          accepted







          up vote
          6
          down vote



          accepted






          enlargelimits option can solve the problem.



          enter image description here



          documentclass[11pt,twoside,a4paper]{article}
          usepackage{pgfplots}
          begin{document}
          begin{figure}
          smallbegin{tikzpicture}
          begin{axis}[
          xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,enlargelimits=0.1,
          x axis line style={draw=none},
          symbolic y coords={A,B,C,D,E,F,G},
          ytick=data, nodes near coords, nodes near coords align={horizontal},
          ]

          addplot coordinates{
          (1000,A)
          (800,B)
          (500,C)
          (100,D)
          (600,E)
          (150,F)
          (300,G)
          };
          end{axis}
          end{tikzpicture}
          end{figure}
          end{document}


          Alternate way



          Another way is to set ymin and ymax.



          enter image description here



          documentclass[11pt,twoside,a4paper]{article}
          usepackage{pgfplots}
          begin{document}
          begin{figure}
          smallbegin{tikzpicture}
          begin{axis}[
          xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,
          ymin={[normalized]-1}, ymax={[normalized]7},
          x axis line style={draw=none},
          symbolic y coords={A,B,C,D,E,F,G},
          ytick=data, nodes near coords, nodes near coords align={horizontal},
          ]

          addplot coordinates{
          (1000,A)
          (800,B)
          (500,C)
          (100,D)
          (600,E)
          (150,F)
          (300,G)
          };
          end{axis}
          end{tikzpicture}
          end{figure}
          end{document}





          share|improve this answer














          enlargelimits option can solve the problem.



          enter image description here



          documentclass[11pt,twoside,a4paper]{article}
          usepackage{pgfplots}
          begin{document}
          begin{figure}
          smallbegin{tikzpicture}
          begin{axis}[
          xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,enlargelimits=0.1,
          x axis line style={draw=none},
          symbolic y coords={A,B,C,D,E,F,G},
          ytick=data, nodes near coords, nodes near coords align={horizontal},
          ]

          addplot coordinates{
          (1000,A)
          (800,B)
          (500,C)
          (100,D)
          (600,E)
          (150,F)
          (300,G)
          };
          end{axis}
          end{tikzpicture}
          end{figure}
          end{document}


          Alternate way



          Another way is to set ymin and ymax.



          enter image description here



          documentclass[11pt,twoside,a4paper]{article}
          usepackage{pgfplots}
          begin{document}
          begin{figure}
          smallbegin{tikzpicture}
          begin{axis}[
          xmajorticks=false, xbar, y=-0.4cm, bar width=0.3cm,axis lines=left,
          ymin={[normalized]-1}, ymax={[normalized]7},
          x axis line style={draw=none},
          symbolic y coords={A,B,C,D,E,F,G},
          ytick=data, nodes near coords, nodes near coords align={horizontal},
          ]

          addplot coordinates{
          (1000,A)
          (800,B)
          (500,C)
          (100,D)
          (600,E)
          (150,F)
          (300,G)
          };
          end{axis}
          end{tikzpicture}
          end{figure}
          end{document}






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 2 days ago

























          answered 2 days ago









          nidhin

          1,530920




          1,530920








          • 1




            Thanks @nidhin.
            – qzx
            2 days ago














          • 1




            Thanks @nidhin.
            – qzx
            2 days ago








          1




          1




          Thanks @nidhin.
          – qzx
          2 days ago




          Thanks @nidhin.
          – qzx
          2 days ago


















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f460707%2fhorizontal-chart-bars-are-cropped%23new-answer', 'question_page');
          }
          );

          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







          Popular posts from this blog

          Quarter-circle Tiles

          build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

          Mont Emei