Exemplo n.º 1
0
        public Contour_Palette()
        {
            // This call is required by the Windows Form Designer.
            InitializeComponent();

            contourSeries1.FillSampleValues(25);
            contourSeries1.ContourMarks.Visible = true;
            contourSeries1.ColorEach            = false;
        }
        public Tools_Image()
        {
            // This call is required by the Windows Form Designer.
            InitializeComponent();

            contourSeries1.FillSampleValues(20);

            Random r = new Random();

            for (int t = 1; t < 50; t++)
            {
                pointSeries1.Add(1.0 + r.Next(20), 1.0 + r.Next(20));
            }

            // Do not expand chart margins
            pointSeries1.Pointer.InflateMargins = false;
        }