cytadela8C
Windmill3y ago
4 replies
cytadela8

Chartjs options not working

Hi, do chartjs options actually work? I'm trying to scale the x axis properly (I have dates on the x axis). Specifying the "options" seems to have no effect. I'm trying to use following options:
{
  "scales": {
    "x": {
      "type": "time",
      "time": {
        "unit": "second",
        "displayFormats": {
          "second": "YYYY-MM-DD HH:mm:ss"
        }
      },
      "title": {
        "display": true,
        "text": "Time"
      }
    },
    "y": {
      "title": {
        "display": true,
        "text": "Value"
      }
    }
  }
}
Was this page helpful?