Skip to content

Column Override breaks Flow graph #81

@MauriceHartmann

Description

@MauriceHartmann

Adding column Overrides can potentially break a graph.

An example:

column: {
          Oil: 0,
          Oil1: 1,
          Air1: 1,
          Air2: 2,
          Stuff1: 1,
          Stuff2: 2
        },

With the following Dataset

data: [
          { from: "Oil", to: "Air1", flow: 15 },
          { from: "Oil", to: "Stuff1", flow: 20 },
          { from: "Oil1", to: "Air2", flow: 25 },
          { from: "Oil1", to: "Stuff2", flow: 25 `},]`

completly breaks the graph, as shown here:

Screenshot_20221105_212016

How I would expect it to look (without the crossed out flow):

Screenshot 2022-11-05 212304

{ from: "Oil", to: "Oil1", flow: 15 }, was added for screenshot above

A modified codepen example: https://codepen.io/mh2207/pen/WNyGxPX

And Thanks for your hard work!

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions