Accord.Controls.Wavechart.AddWaveform C# (CSharp) Метод

AddWaveform() публичный Метод

Add Waveform to the chart.

Adds new empty waveform to the collection of waves. To update this wave the UpdateWaveform(string, float[]) method should be used.

public AddWaveform ( string name, Color color, int width ) : void
name string Waveform name.
color Color Waveform color.
width int Waveform width.
Результат void
        public void AddWaveform(string name, Color color, int width)
        {
            AddWaveform(name, color, width, true);
        }

Same methods

Wavechart::AddWaveform ( string name, Color color, int width, bool updateYRange ) : void