Highcharts X axis categories name gets only shows 1 character



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I created a column and line chart with highcharts.



X axis category names have been appearing fine in other charts created with the same code but now I encounter an issue where the entire category name gets cut short with only the first letter only displayed in the chart.



For example a category should read 'Run' but it only shows up as 'R'.



I also noted that this occurs in charts where there is only 1 category to display (so like a lone column chart with only one column displayed).



Would appreciate some help here :)



highchart() %>%
hc_title(text = "Creative Performance") %>%
hc_yAxis_multiples(
list(title = list(text = "Spend"),labels=list(format ='$value:,.2f'), min=0, max=max(data_creative_trueview$Spend), showFirstLabel= TRUE,showLastLabel=TRUE,opposite = FALSE),
list(title = list(text = "TrueView: CPCV"),min=0,max = max(data_creative_trueview$`TrueView: CPCV`)+0.5, labels = list(format = "$value:,.2f"),showLastLabel = FALSE, opposite = TRUE)) %>%
hc_add_series(data = data_creative_trueview, type= "column", hcaes(y=Spend), name="Spend") %>%
hc_add_series(data = data_creative_trueview, type = "line", hcaes(y=`TrueView: CPCV`), name="TrueView: CPCV", yAxis=1) %>%
hc_xAxis(title="Creative", categories=data_creative_trueview$Creative) %>%
hc_tooltip(pointFormat = '$point.y:,.2f') %>%
emphasized text hc_legend(align = "right", verticalAlign = "top")









share|improve this question






























    1















    I created a column and line chart with highcharts.



    X axis category names have been appearing fine in other charts created with the same code but now I encounter an issue where the entire category name gets cut short with only the first letter only displayed in the chart.



    For example a category should read 'Run' but it only shows up as 'R'.



    I also noted that this occurs in charts where there is only 1 category to display (so like a lone column chart with only one column displayed).



    Would appreciate some help here :)



    highchart() %>%
    hc_title(text = "Creative Performance") %>%
    hc_yAxis_multiples(
    list(title = list(text = "Spend"),labels=list(format ='$value:,.2f'), min=0, max=max(data_creative_trueview$Spend), showFirstLabel= TRUE,showLastLabel=TRUE,opposite = FALSE),
    list(title = list(text = "TrueView: CPCV"),min=0,max = max(data_creative_trueview$`TrueView: CPCV`)+0.5, labels = list(format = "$value:,.2f"),showLastLabel = FALSE, opposite = TRUE)) %>%
    hc_add_series(data = data_creative_trueview, type= "column", hcaes(y=Spend), name="Spend") %>%
    hc_add_series(data = data_creative_trueview, type = "line", hcaes(y=`TrueView: CPCV`), name="TrueView: CPCV", yAxis=1) %>%
    hc_xAxis(title="Creative", categories=data_creative_trueview$Creative) %>%
    hc_tooltip(pointFormat = '$point.y:,.2f') %>%
    emphasized text hc_legend(align = "right", verticalAlign = "top")









    share|improve this question


























      1












      1








      1








      I created a column and line chart with highcharts.



      X axis category names have been appearing fine in other charts created with the same code but now I encounter an issue where the entire category name gets cut short with only the first letter only displayed in the chart.



      For example a category should read 'Run' but it only shows up as 'R'.



      I also noted that this occurs in charts where there is only 1 category to display (so like a lone column chart with only one column displayed).



      Would appreciate some help here :)



      highchart() %>%
      hc_title(text = "Creative Performance") %>%
      hc_yAxis_multiples(
      list(title = list(text = "Spend"),labels=list(format ='$value:,.2f'), min=0, max=max(data_creative_trueview$Spend), showFirstLabel= TRUE,showLastLabel=TRUE,opposite = FALSE),
      list(title = list(text = "TrueView: CPCV"),min=0,max = max(data_creative_trueview$`TrueView: CPCV`)+0.5, labels = list(format = "$value:,.2f"),showLastLabel = FALSE, opposite = TRUE)) %>%
      hc_add_series(data = data_creative_trueview, type= "column", hcaes(y=Spend), name="Spend") %>%
      hc_add_series(data = data_creative_trueview, type = "line", hcaes(y=`TrueView: CPCV`), name="TrueView: CPCV", yAxis=1) %>%
      hc_xAxis(title="Creative", categories=data_creative_trueview$Creative) %>%
      hc_tooltip(pointFormat = '$point.y:,.2f') %>%
      emphasized text hc_legend(align = "right", verticalAlign = "top")









      share|improve this question
















      I created a column and line chart with highcharts.



      X axis category names have been appearing fine in other charts created with the same code but now I encounter an issue where the entire category name gets cut short with only the first letter only displayed in the chart.



      For example a category should read 'Run' but it only shows up as 'R'.



      I also noted that this occurs in charts where there is only 1 category to display (so like a lone column chart with only one column displayed).



      Would appreciate some help here :)



      highchart() %>%
      hc_title(text = "Creative Performance") %>%
      hc_yAxis_multiples(
      list(title = list(text = "Spend"),labels=list(format ='$value:,.2f'), min=0, max=max(data_creative_trueview$Spend), showFirstLabel= TRUE,showLastLabel=TRUE,opposite = FALSE),
      list(title = list(text = "TrueView: CPCV"),min=0,max = max(data_creative_trueview$`TrueView: CPCV`)+0.5, labels = list(format = "$value:,.2f"),showLastLabel = FALSE, opposite = TRUE)) %>%
      hc_add_series(data = data_creative_trueview, type= "column", hcaes(y=Spend), name="Spend") %>%
      hc_add_series(data = data_creative_trueview, type = "line", hcaes(y=`TrueView: CPCV`), name="TrueView: CPCV", yAxis=1) %>%
      hc_xAxis(title="Creative", categories=data_creative_trueview$Creative) %>%
      hc_tooltip(pointFormat = '$point.y:,.2f') %>%
      emphasized text hc_legend(align = "right", verticalAlign = "top")






      r highcharts






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 15 '18 at 11:18









      Bsquare ℬℬ

      3,684101635




      3,684101635










      asked Nov 15 '18 at 8:45









      Stephanie LeeStephanie Lee

      212




      212






















          1 Answer
          1






          active

          oldest

          votes


















          1














          I found an answer right after I posted this. Apparently this is a common issue. Categories must be provided as a list when there is only one category. Refer to: https://github.com/jbkunst/highcharter/issues/173






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            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: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            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%2fstackoverflow.com%2fquestions%2f53315427%2fhighcharts-x-axis-categories-name-gets-only-shows-1-character%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









            1














            I found an answer right after I posted this. Apparently this is a common issue. Categories must be provided as a list when there is only one category. Refer to: https://github.com/jbkunst/highcharter/issues/173






            share|improve this answer



























              1














              I found an answer right after I posted this. Apparently this is a common issue. Categories must be provided as a list when there is only one category. Refer to: https://github.com/jbkunst/highcharter/issues/173






              share|improve this answer

























                1












                1








                1







                I found an answer right after I posted this. Apparently this is a common issue. Categories must be provided as a list when there is only one category. Refer to: https://github.com/jbkunst/highcharter/issues/173






                share|improve this answer













                I found an answer right after I posted this. Apparently this is a common issue. Categories must be provided as a list when there is only one category. Refer to: https://github.com/jbkunst/highcharter/issues/173







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 15 '18 at 8:56









                Stephanie LeeStephanie Lee

                212




                212





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • 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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53315427%2fhighcharts-x-axis-categories-name-gets-only-shows-1-character%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

                    How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

                    Syphilis

                    Darth Vader #20