Click here to Skip to main content
15,896,111 members
Home / Discussions / C#
   

C#

 
QuestionSplit a Zip into smaller zip file of Size 1MB using .NET console application VS 2005 Pin
Member 322226417-Feb-09 19:33
Member 322226417-Feb-09 19:33 
AnswerRe: Split a Zip into smaller zip file of Size 1MB using .NET console application VS 2005 Pin
N a v a n e e t h17-Feb-09 20:41
N a v a n e e t h17-Feb-09 20:41 
QuestionUpload a File to SFTP server using VS 2005 Pin
Member 322226417-Feb-09 19:29
Member 322226417-Feb-09 19:29 
AnswerRe: Upload a File to SFTP server using VS 2005 Pin
N a v a n e e t h17-Feb-09 20:49
N a v a n e e t h17-Feb-09 20:49 
AnswerRe: Upload a File to SFTP server using VS 2005 Pin
Ashfield17-Feb-09 20:57
Ashfield17-Feb-09 20:57 
QuestionList Box Control Styling Pin
Soptik Dutta17-Feb-09 19:10
Soptik Dutta17-Feb-09 19:10 
AnswerRe: List Box Control Styling Pin
musefan17-Feb-09 22:07
musefan17-Feb-09 22:07 
QuestionCan i ask some question About ZedGraph?? Pin
Vampirejk17-Feb-09 19:04
Vampirejk17-Feb-09 19:04 
Hello ~

Can i ask Some question abo ut zedgraph here??

anyway this is my first question in code project ^^

and i can't english well plz comprehension my writing

let's start question

now My company Project Using Zedgraph.dll ver:5.1.4(maybe)

in the Project using zedgraph namespace

and i complete Drawing the Graph

only user X axis, Y axis

data is X[30] , T[30] <-- this data is ReadlTime data and Changing 3sec

Graph is Drawing but 3sec draw the Line, and 6sec draw the Line.. so on

Time is Gone...Line is so Many Many and i don't want it

for example)
0sec

3sec Draw the Line~~~~ Having data X[30] , T[30](data always chaging every
3sec)

and i want clear the line <-- this is i want

6sec Draw the Line~~~~ Having data X[30] , T[30](data always chaging every 3sec)
so on.....

how do i clear the Line ?? Cry | :((

check this out my source
private void CreateGraph(double[] X, double[] T) //제드그래프 생성 (X,Y값을 가져옴)
{

GraphPane myPane = zgc.GraphPane;


// Set the titles and axis labels/;/l
myPane.Title.Text = "My Test Date Graph";
myPane.XAxis.Title.Text = "X";
myPane.YAxis.Title.Text = "Y";

// Make up some data points from the Sine function

PointPairList list = new PointPairList();
for (int i = 0; i < X.Length; i++)
{
list.Add(X[i], T[i]);

}
/*
for (double x = 0; x < 36; x++)
{
double y = Math.Sin(x * Math.PI / 15.0);

list.Add(x, y);
}
*/
// Generate a blue curve with circle symbols, and "My Curve 2" in the legend
LineItem myCurve = myPane.AddCurve("내부온도", list, Color.Blue,
SymbolType.Circle);
myCurve.Line.Fill = new Fill(Color.White, Color.Red, 45F);

// Make the symbols opaque by filling them with white
myCurve.Symbol.Fill = new Fill(Color.White);

// Make the symbols opaque by filling them with white
myCurve.Symbol.Fill = new Fill(Color.White);

// Fill the axis background with a color gradient
myPane.Chart.Fill = new Fill(Color.White, Color.LightGoldenrodYellow, 45F);

// Fill the pane background with a color gradient
myPane.Fill = new Fill(Color.White, Color.FromArgb(220, 220, 255), 45F);

// Calculate the Axis Scale Ranges
zgc.AxisChange();
Refresh();
QuestionDefine multiple variables with the same initial value Pin
CodingLover17-Feb-09 18:53
CodingLover17-Feb-09 18:53 
AnswerRe: Define multiple variables with the same initial value Pin
Vikram A Punathambekar17-Feb-09 21:29
Vikram A Punathambekar17-Feb-09 21:29 
AnswerRe: Define multiple variables with the same initial value Pin
Guffa17-Feb-09 23:24
Guffa17-Feb-09 23:24 
QuestionMy regular expression skiping one data How can I fix it [modified] Pin
Naveed72717-Feb-09 18:09
Naveed72717-Feb-09 18:09 
QuestionSocket issue Pin
yesu prakash17-Feb-09 17:54
yesu prakash17-Feb-09 17:54 
AnswerRe: Socket issue Pin
carbon_golem18-Feb-09 2:28
carbon_golem18-Feb-09 2:28 
GeneralRe: Socket issue Pin
yesu prakash18-Feb-09 17:57
yesu prakash18-Feb-09 17:57 
QuestionC# Web Service Custom Return Object Problem Pin
WhatDoIHaveToDoToGetAUniqueName17-Feb-09 10:54
WhatDoIHaveToDoToGetAUniqueName17-Feb-09 10:54 
AnswerRe: C# Web Service Custom Return Object Problem Pin
Calin Tatar17-Feb-09 11:05
Calin Tatar17-Feb-09 11:05 
GeneralRe: C# Web Service Custom Return Object Problem [modified] Pin
WhatDoIHaveToDoToGetAUniqueName17-Feb-09 12:37
WhatDoIHaveToDoToGetAUniqueName17-Feb-09 12:37 
GeneralRe: C# Web Service Custom Return Object Problem Pin
Ennis Ray Lynch, Jr.17-Feb-09 15:21
Ennis Ray Lynch, Jr.17-Feb-09 15:21 
GeneralRe: C# Web Service Custom Return Object Problem [modified] Pin
WhatDoIHaveToDoToGetAUniqueName18-Feb-09 10:00
WhatDoIHaveToDoToGetAUniqueName18-Feb-09 10:00 
GeneralRe: C# Web Service Custom Return Object Problem Pin
Ennis Ray Lynch, Jr.18-Feb-09 10:22
Ennis Ray Lynch, Jr.18-Feb-09 10:22 
GeneralRe: C# Web Service Custom Return Object Problem Pin
WhatDoIHaveToDoToGetAUniqueName18-Feb-09 12:55
WhatDoIHaveToDoToGetAUniqueName18-Feb-09 12:55 
QuestionParsing Line by line Pin
alwaysthinking17-Feb-09 10:40
alwaysthinking17-Feb-09 10:40 
AnswerRe: Parsing Line by line Pin
Calin Tatar17-Feb-09 11:01
Calin Tatar17-Feb-09 11:01 
AnswerRe: Parsing Line by line Pin
PIEBALDconsult17-Feb-09 12:46
mvePIEBALDconsult17-Feb-09 12:46 

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.