-
Notifications
You must be signed in to change notification settings - Fork 298
Open
Description
I was just reading a great article that had absolutely terrible graphs, which got me thinking about a Graph widget! I think this would be so useful for visualising application data and fairly easy to implement (I'm currently finishing of an XYPad which isn't too far removed).
Also it would be nice to be able to pass in something like:
// in graph.rs
pub enum Type {
Line,
Bar,
Dot,
}
To specify the way it should be visualised.
kindlychung