Forum Discussion
mroberts_troy
Advocate II
2 years agoNonsequential Linear Progress Visual
For years we have used Craydec's "Timeline" visual to present non-sequential linear progress over categories including statuses. The developer stopped supporting it a few years back, but you could s...
- 2 years ago
This is how it looks like in a very simple Deneb without any optimization
{ "data": {"name": "dataset"}, "mark": {"type": "bar"}, "encoding": { "y": { "field": "LineID", "type": "nominal" }, "x": { "field": "BeginMP", "type": "quantitative" },"x2": { "field": "EndMP" },"color":{ "field": "Status" } } }
lbendlin
Super User
2 years agoEasy to do with a simple-ish Deneb visual.
Got some sample data?
- mroberts_troy2 years ago
Advocate II
I tried using that to build a visual, but it would only produce the axis and didn't display the data within. Plus I'm concerned about the fact that my data will not always be named exactly the same way. I guess I could ETL it to make the columns named the same, that just could make it a jumbled mess. Anyway, here's some sample data.
- lbendlin2 years ago
Super User
This is how it looks like in a very simple Deneb without any optimization
{ "data": {"name": "dataset"}, "mark": {"type": "bar"}, "encoding": { "y": { "field": "LineID", "type": "nominal" }, "x": { "field": "BeginMP", "type": "quantitative" },"x2": { "field": "EndMP" },"color":{ "field": "Status" } } }- mroberts_troy2 years ago
Advocate II
Well, what the heck. LOL I couldn't get it to display when I tried it! Now I need to learn more about how to use this (like adding colors and such)! Thank you!