Re: 2 plots in the same Manipulate
- To: mathgroup at smc.vnet.net
- Subject: [mg101074] Re: 2 plots in the same Manipulate
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Tue, 23 Jun 2009 07:06:38 -0400 (EDT)
- References: <h1nev2$8rq$1@smc.vnet.net>
Hi, Manipulate[ GraphicsRow[{ListLinePlot[pnts], BarChart[pnts]}], {{pnts, Table[i^1, {i, 6}]}}] ? Regards Jens Lobotomy wrote: > Hi > I've made one Maniipulate showing a ListLinePlot where i can vary a > couple of different parameters. > Now I want to make a PieChart connected to THE SAME parameters form > the ListLinePlot. I want this PieChart to be manipulated at the same > time, showing just next to my ListLinePlot. How is this done? I've > been trying a bit with Grid but found nothing that works. >