Click here to Skip to main content
15,915,702 members
Home / Discussions / C#
   

C#

 
GeneralRe: Repost Pin
Not Active12-Dec-10 15:34
mentorNot Active12-Dec-10 15:34 
QuestionVisual Studio and Multithreaded debugging Pin
Super Lloyd12-Dec-10 13:59
Super Lloyd12-Dec-10 13:59 
AnswerRe: Visual Studio and Multithreaded debugging Pin
Not Active12-Dec-10 15:12
mentorNot Active12-Dec-10 15:12 
GeneralRe: Visual Studio and Multithreaded debugging Pin
Super Lloyd12-Dec-10 15:20
Super Lloyd12-Dec-10 15:20 
QuestionQuestion about using Zedgraph [modified] Pin
Rafone12-Dec-10 3:51
Rafone12-Dec-10 3:51 
AnswerRe: Question about using Zedgraph Pin
Not Active12-Dec-10 5:17
mentorNot Active12-Dec-10 5:17 
GeneralRe: Question about using Zedgraph Pin
Rafone12-Dec-10 6:32
Rafone12-Dec-10 6:32 
GeneralRe: Question about using Zedgraph Pin
Thomas Krojer30-Dec-10 3:44
Thomas Krojer30-Dec-10 3:44 
Did you find the solution for keeping the size of your GraphPane?

If not, here is it:

You need 2 floats

private float myHeight = 0;
private float myWidth = 0;


and in your CreateChart, right after

GraphPane myPane = zgc.GraphPane;


you add:

if (myHeight == 0)
{
    myWidth = myPane.Rect.Size.Width;
    myHeight = myPane.Rect.Size.Height;
}
else
{
    if (myPane.Rect.Size.Width < myWidth)
    {
        myPane.Rect = new RectangleF(0, 0, myWidth, myHeight);
    }
}

GeneralRe: Question about using Zedgraph Pin
Rafone30-Dec-10 5:16
Rafone30-Dec-10 5:16 
AnswerRe: Question about using Zedgraph Pin
Thomas Krojer12-Dec-10 23:42
Thomas Krojer12-Dec-10 23:42 
GeneralRe: Question about using Zedgraph Pin
Rafone13-Dec-10 3:45
Rafone13-Dec-10 3:45 
GeneralRe: Question about using Zedgraph Pin
Thomas Krojer13-Dec-10 3:59
Thomas Krojer13-Dec-10 3:59 
Questionwhy not responding? Pin
Jassim Rahma12-Dec-10 2:48
Jassim Rahma12-Dec-10 2:48 
AnswerRe: why not responding? Pin
Luc Pattyn12-Dec-10 3:04
sitebuilderLuc Pattyn12-Dec-10 3:04 
AnswerRe: why not responding? Pin
Not Active12-Dec-10 3:43
mentorNot Active12-Dec-10 3:43 
GeneralRe: why not responding? Pin
Luc Pattyn12-Dec-10 5:46
sitebuilderLuc Pattyn12-Dec-10 5:46 
GeneralRe: why not responding? Pin
Jassim Rahma13-Dec-10 2:49
Jassim Rahma13-Dec-10 2:49 
GeneralRe: why not responding? Pin
Not Active13-Dec-10 3:28
mentorNot Active13-Dec-10 3:28 
QuestionHow can I filter certain messages in log4net Pin
Berlus11-Dec-10 23:54
Berlus11-Dec-10 23:54 
AnswerRe: How can I filter certain messages in log4net Pin
fjdiewornncalwe12-Dec-10 3:50
professionalfjdiewornncalwe12-Dec-10 3:50 
AnswerRe: How can I filter certain messages in log4net Pin
Manfred Rudolf Bihy12-Dec-10 4:39
professionalManfred Rudolf Bihy12-Dec-10 4:39 
GeneralRe: How can I filter certain messages in log4net Pin
Berlus12-Dec-10 11:04
Berlus12-Dec-10 11:04 
AnswerRe: How can I filter certain messages in log4net Pin
Pete O'Hanlon13-Dec-10 0:34
mvePete O'Hanlon13-Dec-10 0:34 
Questiongadgets in windows form Pin
Zeyad Jalil11-Dec-10 23:06
professionalZeyad Jalil11-Dec-10 23:06 
AnswerRe: gadgets in windows form Pin
Eddy Vluggen12-Dec-10 0:47
professionalEddy Vluggen12-Dec-10 0:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.