mattijn
7/26/2017 - 2:58 PM

vega3_curvedLine_path.json

{
  "$schema": "https://vega.github.io/schema/vega/v3.0.json",
  "width": 200,
  "height": 200,
  "padding": 5,
  "marks": [
    {
      "type": "path",
      "encode": {
        "update": {
          "x": {
            "value": 0
          },
          "y": {
            "value": 0
          },
          "path": {
            "value": "M20,70 T80,100 T160,80 T200,90"
          },
          "opacity": {
            "value": 1
          },
          "strokeWidth": {
            "value": 5
          }
        },
        "hover": {
          "opacity": {
            "value": 0.5
          }
        }
      }
    }
  ]
}