User (Legacy) Posted August 26, 2004 Report Share Posted August 26, 2004 I have a number of series, each one has its own pane, I'd like to let the user select what serie (and so what's pane) to see. Series has Visible, but for the pane? do i need to remove it from collection? (this will cause other series to go out of sync...) TIA -- Corrado Cavalli [Microsoft .NET MVP-MCP] UGIdotNET - http://www.ugidotnet.org Weblog: http://www.ugidotnet.org/710.blog Link to comment Share on other sites More sharing options...
Software FX Posted August 26, 2004 Report Share Posted August 26, 2004 In general, a pane may contain more than one series. To remove a pane, simply do: pane.Proportion = 0; You need to make sure NO Visible series are attached to a pane with Proportion Zero, or else you will get unexpected results. To figure out which pane a series is attached to: int nPane = chart1.Axis[series.YAxis].Pane; -- FP Software FX Link to comment Share on other sites More sharing options...
User (Legacy) Posted August 26, 2004 Author Report Share Posted August 26, 2004 Great! you saved me :-) Is this "details" described somewhere on documentation, had a look and found no mention... Thanks -- Corrado Cavalli [Microsoft .NET MVP-MCP] UGIdotNET - http://www.ugidotnet.org Weblog: http://www.ugidotnet.org/710.blog Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.