Sankey is about proportional-width bands, but the chart in your sketch just uses a set of fixed-width paths, using the cubic bezier curves that Sankey typically employs. And what you want the ends of those paths connected to is not a set of independent nodes, but two ranges, with positioning determined by your data values.
So the Google Charts Sankey diagram is not going to help much. I haven't seen anything quite like it as a standard chart type, so you might have to roll-your-own with something like raw d3. On Fri, Aug 30, 2019 at 2:17 PM Dustyn Gobler <[email protected]> wrote: > I'm trying to create a diagram that compares a project's ideal timeline at > the start, with the reality of what actually happened at the end, for a > postmortem. I've sketched out what I'm imagining. What type of diagram > would this be? Sankey? Could I use Google Charts to create it? > > -- > You received this message because you are subscribed to the Google Groups > "Google Visualization API" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-visualization-api/15a67c63-0e65-4ef5-bad8-ccf90e6fa5c6%40googlegroups.com > <https://groups.google.com/d/msgid/google-visualization-api/15a67c63-0e65-4ef5-bad8-ccf90e6fa5c6%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2> [email protected] <[email protected]> Cambridge MA -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJM-qJb2Qur0ZM2%3DORx1DfqDGbMmqKArD3mEvEuqFjFPjw%40mail.gmail.com.
