-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DateTime chart ? #34
Comments
Hello, at the moment values are needed and equitably distributed. Not ideal, but you could do this : var entries = new Entry []
{
new Entry(0) { Label = "9:50" },
new Entry(1) { Label = "9:51" },
new Entry(2) { Label = "9:52" },
new Entry(2) { Label = "9:53" },
new Entry(3) { Label = "9:54" },
new Entry(3) { Label = "9:55" },
new Entry(3) { Label = "9:56" },
new Entry(3) { Label = "9:57" },
new Entry(4) { Label = "9:58" },
}; I'll see if I could add this feature in next versions. |
Would also be interested in something like this, or a step chart. |
I ran into this problem immediately when I started using Microcharts a few years ago. I am back now looking to use it again, and I see this still hasn't been solved. This is a very painful missing feature as I have data that doesn't occur on a regular interval, and adding "dummy" values in-between real values introduces its own problems. |
I do accept pull requests if someone wanted to implement such a chart. |
I can make a PR for it. How did you imagine the features ? |
That sounds good to me |
@Seuleuzeuh do you have something available or work-in-progress in some fork? |
I think he needs more details about the feature first, it should be something that's not just for one type of chart, if we can make them repostable that'll be best. |
I will made some API spec before starting an implementation, I will try to do this spec this week, and if it fit the needs I'll start the implementation. |
Thanks will be a useful feature addition. |
@Seuleuzeuh are there any chances to have the spec ready the next few days? Will you need support in the Implementation? |
To make a chart ( X: time 9:50 , 9:51, 9:52 , 9:54, 9.58....... ) , ( Y: value , 0,1,2,3,4 .. )
Is it possible ?
The text was updated successfully, but these errors were encountered: