标签按月份名称按顺序排列

时间:2018-05-31 07:50:26

标签: r plotly r-plotly ggplotly

this is the pie

我想按照月份名称按顺序排列,但总是按照最高价值(如1月,2月,3月,4月)显示,但是(1月,3月,2月,4月)(根据最高价值)

plot_ly(cipltdyearstore1, labels = ~Month, values = ~TOTAL, type = 'pie', textinfo = 'none',
            hoverinfo = 'text',
            text = ~paste(Month,',',TOTAL),key = ~key) %>% add_pie(hole = 0.6) %>%
      layout(xaxis = list(type = "category")) 

0 个答案:

没有答案