CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 1999
    Posts
    14

    Plotting X-Y Scatter Graph

    Hi !

    how do i plot points on an X-Y scatter graph using MSCchart ?

    thank you.



  2. #2
    Join Date
    Jul 1999
    Location
    Athens, Hellas
    Posts
    769

    Re: Plotting X-Y Scatter Graph


    dim X_Y(m,n) 'give the dimensions of the array
    'fill the array with values: X_Y(1,1)=7, etc..
    With MSChart1
    .chartType = VtChChartType2dXY
    .ChartData = X_Y
    End With





Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured