[jQuery] Re: Ann: Flot 0.1 released

2007-12-05 Thread Ole Laursen
On Dec 4, 8:35 pm, Ken Gregg [EMAIL PROTECTED] wrote: Great work. Anxious to play with it. Thanks! :-) One suggestion for handling time series is providing x and y axis label callbacks. When passed a value (number of minutes, hours, days, etc) the call back could translate the value to

[jQuery] Re: Ann: Flot 0.1 released

2007-12-05 Thread Ole Laursen
On Dec 5, 5:48 pm, Guy Fraser [EMAIL PROTECTED] wrote: Take a look at the Datejs.com library - it has lots of useful methods for working with dates and I believe they also plan to later implement it as a jQuery plugin. Hm, interesting. Now we'll just sit back and wait to you find a way of

[jQuery] Re: Ann: Flot 0.1 released

2007-12-05 Thread Guy Fraser
Ole Laursen wrote: The thing is that a good tick generator for the Gregorian calendar would go about generating ticks differently than a good tick generator for ordinary scalar values. For instance, if the plot displays half a year of time, there should be ticks for when the months start

[jQuery] Re: Ann: Flot 0.1 released

2007-12-05 Thread Ole Laursen
On Dec 4, 11:03 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Karl Swedberg schrieb: Interesting. I don't see any canvas in IE6, thats why I posted. It doesn't throw any error either. That's really strange. They're working in my IE6. -- Ole Laursen http://people.iola.dk/olau/

[jQuery] Re: Ann: Flot 0.1 released

2007-12-05 Thread Ken Gregg
I found that right after I posted. My first project was plotting daily hits. I just made the x axis the day of the month and made sure my values arrays have an entry for every day and formatted the date using tickFormatter. Worked great, but what you suggest would be even easier. Ken On Dec 5,

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Richard D. Worth
Beautiful stuff. Nice work! I'll be using this for sure. - Richard On Dec 4, 2007 7:04 AM, Ole Laursen [EMAIL PROTECTED] wrote: Hi! I've just released Flot 0.1, a brand-new plot plugin for jQuery which focuses on simple usage, attractive looks and interactive features like zooming. It's

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Jeferson Koslowski
Wow, looks nice. Great work. On Dec 4, 2007 11:48 AM, Richard D. Worth [EMAIL PROTECTED] wrote: Beautiful stuff. Nice work! I'll be using this for sure. - Richard On Dec 4, 2007 7:04 AM, Ole Laursen [EMAIL PROTECTED] wrote: Hi! I've just released Flot 0.1, a brand-new plot plugin

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Andy Matthews
Just off the top of my head. 1) I'd like to see some sort of background color for the labels in the top right. The text overlaps the lines and make it a little tough to read. At least an option for it. That's really it. This is QUITE impressive and I can easily see uses for this. Thanks for

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Stefan Petre
Swt and useful . I like it so much. 2007/12/4, Ole Laursen [EMAIL PROTECTED]: Hi! I've just released Flot 0.1, a brand-new plot plugin for jQuery which focuses on simple usage, attractive looks and interactive features like zooming. It's like plotr and Plotkit, but hopefully a bit more

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Feed
AWESOME work, congratulations and thanks for sharing. On Dec 4, 9:04 am, Ole Laursen [EMAIL PROTECTED] wrote: Hi! I've just released Flot 0.1, a brand-new plot plugin for jQuery which focuses on simple usage, attractive looks and interactive features like zooming. It's like plotr and

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Ole Laursen
On Dec 4, 3:11 pm, Andy Matthews [EMAIL PROTECTED] wrote: Just off the top of my head. 1) I'd like to see some sort of background color for the labels in the top right. The text overlaps the lines and make it a little tough to read. At least an option for it. One of the loose ends. I've

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Karl Swedberg
Ole, This is absolutely brilliant stuff here. Wow! I can't tell you how much I love this. At jQueryCamp07, John Resig and Bradley Sepos did a presentation on canvas, and I was blown away by the possibilities. This plugin confirms my blown-away-edness. :-) Any plans for a pie chart type

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Ole Laursen
On Dec 4, 7:11 pm, Karl Swedberg [EMAIL PROTECTED] wrote: This is absolutely brilliant stuff here. Wow! I can't tell you how much I love this. At jQueryCamp07, John Resig and Bradley Sepos did a presentation on canvas, and I was blown away by the possibilities. This plugin confirms my

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Jean
Our projects will could be more desktop now =D Thanks a lot! On Dec 4, 2007 10:04 AM, Ole Laursen [EMAIL PROTECTED] wrote: Hi! I've just released Flot 0.1, a brand-new plot plugin for jQuery which focuses on simple usage, attractive looks and interactive features like zooming. It's like

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Andy Matthews
) Subject: [jQuery] Re: Ann: Flot 0.1 released On Dec 4, 7:11 pm, Karl Swedberg [EMAIL PROTECTED] wrote: This is absolutely brilliant stuff here. Wow! I can't tell you how much I love this. At jQueryCamp07, John Resig and Bradley Sepos did a presentation on canvas, and I was blown away

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Jörn Zaefferer
Ole Laursen schrieb: Hi! I've just released Flot 0.1, a brand-new plot plugin for jQuery which focuses on simple usage, attractive looks and interactive features like zooming. It's like plotr and Plotkit, but hopefully a bit more intelligent when it comes to auto-adjusting axes. I love the

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Karl Swedberg
Hey Jörn, He is using excanvas as far as I can see. Tried it in IE6, and it looked great. He also accounts for it in the plugin: if (jQuery.browser.msie) // excanvas hack canvas = window.G_vmlCanvasManager.initElement(canvas) --Karl _ Karl

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Jörn Zaefferer
Karl Swedberg schrieb: Hey Jörn, He is using excanvas as far as I can see. Tried it in IE6, and it looked great. He also accounts for it in the plugin: if (jQuery.browser.msie) // excanvas hack canvas = window.G_vmlCanvasManager.initElement(canvas) Interesting. I don't see