Kanit Wongsuphasawat

Results 209 issues of Kanit Wongsuphasawat

### Discussed in https://github.com/vega/vega-lite/discussions/7616 Originally posted by **the21st** July 26, 2021 I want to set up a chart where the tooltip shows all fields of a datum. So I'm using...

Enhancement :tada:
P2

``` { "$schema": "https://vega.github.io/schema/vega-lite/v3.json", "repeat": {"column": ["Horsepower","Miles_per_Gallon", "Acceleration"]}, "spec": { "data": {"url": "data/cars.json"}, "mark": "bar", "encoding": { "row":{"field":"Origin", "type":"nominal"}, "x": { "field": {"repeat": "column"}, "bin": true, "type": "quantitative" }, "y":...

Bug :bug:
P2
Area - Data & Transform

## PR Description This is an ongoing attempt to do the work needed to support violin chart ## Checklist - [x] Add example that doesn't work yet - [x] Created...

The fact that Vega-Lite can express histogram with building blocks like bin and aggregate is very powerful. However, for quick EDA, just saying `histogram` is more convenient just like ggplot2...

RFC / Discussion :speech_balloon:
Help Wanted
P3
Area - Macro / Composite Mark

Merging into the label feature branch. I also created https://github.com/vega/vega-lite/milestone/73 as a milestone for label. Let's plan to fix all P1 before we release. Add: - bar_label, bar_horizontal_label - (still...

I think nobody really want this spec ```json { "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "description": "Google's stock price over time.", "data": {"url": "data/stocks.csv"}, "transform": [{"filter": "datum.symbol==='GOOG'"}], "mark": {"type": "line", "fill": "black"}, "encoding": {...

Enhancement :tada:

Please review and merge https://github.com/vega/vega-lite/pull/9178 first (since it will fix one of the bad screenshot diffs). (After merging, #9178 into this PR, we also fixed https://github.com/vega/vega-lite/pull/9176/commits/2aeffcad77ec08cf0c9b403f61b4e5c931e01df2.) Context: Bar/Rect marks use...

Somehow, B isn't center aligned with ticks. ``` { "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "data": { "values": [ {"category":"A", "group": "x", "value":0.1}, {"category":"A", "group": "y", "value":0.6}, {"category":"A", "group": "z", "value":0.9}, {"category":"B", "group": "x",...

Bug :bug:

fix https://github.com/vega/vega-lite/issues/9173 Please review and merge https://github.com/vega/vega-lite/pull/9176 first. See the `bar_size_relative_band.svg` example pushed. It should be initially wrong, but then this PR makes it work.