You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to flot-...@googlegroups.com
That link didn't work for me.
It is definitely possible to have multiple graphs on one page. I don't really understand what you mean by "multiple charts in the same plot." You can have multiple series in the same graph, and you can also have multiple graphs on one page. You can align multiple graphs on the page using html and css to set the appropriate div size and position. The graphs will fit those divs accordingly.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to flot-...@googlegroups.com
On 4 November 2012 06:05, Ced <leroux...@gmail.com> wrote:
>
> That link didn't work for me.
>
> It is definitely possible to have multiple graphs on one page. I don't
> really understand what you mean by "multiple charts in the same plot."
> You can have multiple series in the same graph, and you can also have
> multiple graphs on one page.
> You can align multiple graphs on the page using html and css to set the
> appropriate div size and position. The graphs will fit those divs
> accordingly.
I found that I needed to set the Y-axis label width as well to make
sure they lined up.
Like the docs say:
"labelWidth" and "labelHeight" specifies a fixed size of the tick
labels in pixels. They're useful in case you need to align several
plots.
$('[id^=subplot]').bind('plothover', function (evt, pos, item) {
sp1.setCrosshair(pos);
sp2.setCrosshair(pos);
});
$('[id^=subplot]').bind('mouseleave', function (evt) {
sp1.clearCrosshair();
sp2.clearCrosshair();
});
Pal Szasz
unread,
Nov 4, 2012, 1:59:17 PM11/4/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to flot-...@googlegroups.com
Hi!
Thank you all for the answers! I don't know why the screenshot link doesn't work anymore, but basically it was the screenshot of the battery graph from an android phone (Settings->Battery)
I will try to add multiple plots with fixed labels.
/Pal
-- /Pal Szasz
kpd
unread,
Dec 1, 2012, 1:47:13 AM12/1/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to flot-...@googlegroups.com
Pal,
Here is the key part from a sample that plots a bar chart over a filled-line chart: