marksAtIndex static method
Every mark sharing column index (all series stacked at one x).
Implementation
static List<PlotMark> marksAtIndex(ChartScene scene, int index) => [
for (final m in scene.marks)
if (m.index == index) m,
];
Every mark sharing column index (all series stacked at one x).
static List<PlotMark> marksAtIndex(ChartScene scene, int index) => [
for (final m in scene.marks)
if (m.index == index) m,
];