vue-vega icon indicating copy to clipboard operation
vue-vega copied to clipboard

Line Chart with Point Markers seems not working

Open ooasis opened this issue 5 years ago • 0 comments

Hi,

The "Line Chart with Point Markers" seems broken. The points are not shown.

I even tested with the demo chart with spec below.

<vega-lite :spec="demo_spec"></vega-lite>

where demon_spec is:

 {
  "$schema": "https://vega.github.io/schema/vega-lite/v2.6.0.json",
  "description": "Stock prices of 5 Tech Companies over Time.",
  "data": {"url": "https://vega.github.io/editor/data/stocks.csv"},
  "mark": {
    "type": "line",
    "point": true
  },
  "encoding": {
    "x": {"timeUnit": "year", "field": "date", "type": "temporal"},
    "y": {"aggregate":"mean", "field": "price", "type": "quantitative"},
    "color": {"field": "symbol", "type": "nominal"}
  }

-thanks

ooasis avatar Aug 09 '19 17:08 ooasis