biblioteka ZedGraph problem

0

Witam serdecznie chcialam sie nauczyc obslugi biblioteki ZedGraph pod visual studio 2008 w c#.
Mianowicie pobralam biblioteke ze stronki:

http://zedgraph.org/wiki/index.php?title=CSharp_Reference_Code_for_Sample_Charts

tutaj znajduje sie dokladny opis krok po kroku co nalezy zrobic aby uruchomic przykladowy wykres. Chcialabym uruchomic taki przykladowy wykres a pozniej juz pojdzie z górki z nauką obsługi z jakis tutków. Niestety robie wszystko kroczek po kroczku.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using ZedGraph;

namespace ZedGraphSample2
{
    public partial class Form1 : Form
    {

        private void CreateGraph(ZedGraphControl zgc)
        {
            GraphPane myPane = zgc.GraphPane;

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

            // Make up some data points from the Sine function
            PointPairList list = new PointPairList();
            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("My Curve", list, Color.Blue,
                              SymbolType.Circle);
            // Fill the area under the curve with a white-red gradient at 45 degrees
            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);

            // 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();
        }

        public Form1()
        {
            InitializeComponent();

        }

        private void Form1_Load(object sender, EventArgs e)
        {


        }
       
    }
}

ZedGraph w Properties probowalam zamienic nazwe: zg1, ZedGraphControl, ... etc nie pomoglo) odpala sie pusty wykres
Panowie prosze ktos korzystal z tej wtyczki ? :(

0

W metodzie Form1_Load odpal metodę CreateGraph z referencją do obiektu ZedGraph na formie.

0

Hej odp.

        private void Form1_Load(object sender, EventArgs e)
        {
            CreateGraph(zg1);
            //SetSize(); jesli by patrzec na ten przyklad z www
        }

Powinno zadzialac ;)

1 użytkowników online, w tym zalogowanych: 0, gości: 1