Click here to Skip to main content
15,910,603 members
Home / Discussions / Graphics
   

Graphics

 
AnswerRe: BITMAPINFO + Colour video Pin
jossion24-Feb-09 16:52
jossion24-Feb-09 16:52 
GeneralRe: BITMAPINFO + Colour video Pin
Mark Salsbery25-Feb-09 10:30
Mark Salsbery25-Feb-09 10:30 
GeneralRe: BITMAPINFO + Colour video Pin
jossion25-Feb-09 16:17
jossion25-Feb-09 16:17 
GeneralRe: BITMAPINFO + Colour video Pin
Mark Salsbery26-Feb-09 6:14
Mark Salsbery26-Feb-09 6:14 
GeneralRe: BITMAPINFO + Colour video Pin
akirilov24-Apr-09 3:25
akirilov24-Apr-09 3:25 
GeneralRe: BITMAPINFO + Colour video Pin
Mark Salsbery24-Apr-09 5:57
Mark Salsbery24-Apr-09 5:57 
Questioncan not draw polygon using gluTessCallback() function Pin
King Tran20-Feb-09 22:34
King Tran20-Feb-09 22:34 
Questionplz Help ZedGraph Pin
Vampirejk18-Feb-09 2:01
Vampirejk18-Feb-09 2:01 
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 ??

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();
AnswerRe: plz Help ZedGraph Pin
Drew Stainton25-Feb-09 11:49
Drew Stainton25-Feb-09 11:49 
QuestionFlash MX action script redirection Pin
annu0818-Feb-09 1:50
annu0818-Feb-09 1:50 
QuestionUsing GDI over OpenGL in Vista Pin
Gastello16-Feb-09 22:50
Gastello16-Feb-09 22:50 
QuestionManaged DirectX AudioVideoPlayBack Problems Pin
sibinsunny12-Feb-09 23:36
sibinsunny12-Feb-09 23:36 
AnswerRe: Managed DirectX AudioVideoPlayBack Problems [modified] Pin
miljanrajkovic5-May-09 0:26
miljanrajkovic5-May-09 0:26 
Generalerer Pin
KCMANDAL12-Feb-09 0:09
KCMANDAL12-Feb-09 0:09 
Generalvery important Pin
KCMANDAL11-Feb-09 22:35
KCMANDAL11-Feb-09 22:35 
JokeRe: very important Pin
Nishad S11-Feb-09 23:21
Nishad S11-Feb-09 23:21 
GeneralRe: very important Pin
Smithers-Jones13-Feb-09 0:15
Smithers-Jones13-Feb-09 0:15 
GeneralRe: very important Pin
Dave Kreskowiak13-Feb-09 5:12
mveDave Kreskowiak13-Feb-09 5:12 
Questionrefresh device context? Pin
Member 19061757-Feb-09 10:53
Member 19061757-Feb-09 10:53 
AnswerRe: refresh device context? Pin
plexted1-Nov-09 2:35
plexted1-Nov-09 2:35 
QuestionConvert PCL to image Pin
Cosmin Ciuraru29-Jan-09 6:16
Cosmin Ciuraru29-Jan-09 6:16 
QuestionTranslate vertext in shader Pin
Member 445625228-Jan-09 19:49
Member 445625228-Jan-09 19:49 
Questioncan not run DirectX sdk samples Pin
chandrapal27-Jan-09 21:52
chandrapal27-Jan-09 21:52 
QuestionScaling Rotated Points Pin
Richard Blythe19-Jan-09 6:12
Richard Blythe19-Jan-09 6:12 
GeneralRe: Scaling Rotated Points Pin
Luc Pattyn19-Jan-09 6:29
sitebuilderLuc Pattyn19-Jan-09 6:29 

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.