Plot.ly:对齐标记位置

时间:2019-03-07 12:24:38

标签: plotly

我是Plot.ly的新手,对此问题进行了一些研究(如下所述),但找不到任何解决方案,希望有人可以提供帮助:)

我正在使用javascript,并通过使用plot.ly生成了以下图表:

enter image description here

此图表的JSON如下所示:

[
  {
    "mode": "markers",
    "x": [
      "Sales"
    ],
    "y": [
      300
    ],
    "hoverinfo": "none",
    "text": "Capacity",
    "marker": {
      "color": "rgb(17, 157, 255)",
      "size": 20,
      "symbol": 7,
      "line": {
        "width": 2
      }
    }
  },
  {
    "type": "bar",
    "x": [
      "Sales"
    ],
    "y": [
      500
    ],
    "hoverinfo": "none",
    "text": "Demand",
    "marker": {
      "color": "rgb(150,204,204)",
      "line": {
        "width": "5"
      }
    }
  }
]

我要实现的是,标记在条形图的右侧对齐,看起来应该像这样:

enter image description here

是否有类似标记的位置?我在plot.ly上只能找到以下参考:https://plot.ly/javascript/marker-style/ 对我来说,似乎不可能将标记在右侧对齐。

0 个答案:

没有答案