Hello,
I have some issues with our existing code after upgrading to goJS 2.2.2.
Are there any breaking changes to be considered?
goJS 2.1.56:
goJS 2.2.2:
Basically this is a spot panel, to which I add a chartPanel (the line which is drawn corrctly), and then I set the itemTemplate and itemArray on the spot panel, which will display the numbers/durations:
const panel = new go.Panel(go.Panel.Spot);
const chartPanel = new go.Panel(go.Panel.Horizontal);
...
panel.add(chartPanel);
const numberPanel = this.createDurationTextPanel();
panel.itemArray = segments;
panel.itemTemplate = numberPanel;
Any idea why this stopped working?