A simplified network-style chart has been created using Dimple's line plot as the foundation. For example, please refer to this link: http://jsfiddle.net/cc1gpt2o/
myChart.addCategoryAxis("x", "Entity");
myChart.addCategoryAxis("y", "Entity").addOrderRule("Keyword");
var z = myChart.addMeasureAxis("z", "Size");
z.overrideMin = 0;
z.overrideMax = 200;
myChart.addSeries("Keyword", dimple.plot.line);
myChart.addSeries("Keyword", dimple.plot.bubble);
myChart.draw();
One issue encountered is that the line chart's tooltips only appear when hovering over points. Due to multiple overlapping points, it becomes challenging for users to distinguish between lines and values. It would be more beneficial if tooltips were visible while hovering over the lines connecting the points.
An attempt was made to utilize a D3 method that bisects the line to show information about the points. However, the complexity of applying this method in the current setup is a concern: -
Before delving deeper into that solution, is there a simpler way to achieve this within Dimple? (--e.g., transferring the circles' tooltip function to paths?)