Using the zedgraph library you need to change the name of the axes and the contents of the title (underlined in red).

enter image description here

I was looking for how to do this, I made it by example, but gives an error ("string" does not contain a definition for "Text". Could not find extension method "Text"))

GraphPane pane = Graph.GraphPane; pane.Title.Text = 'Графiк коливань згладжувального фiльтра'; pane.XAxis.Title.Text = "V"; 

Explain how to set your own axle names and header content in the form

    2 answers 2

    Try pane.Title = "Графiк коливань згладжувального фiльтра"; Apparently pane.Title is already a string

    • Yes, after the Zedgraph update everything has changed, thanks! - Nether

    GraphPane pane = SpectrAnalyzer.GraphPane;
    pane.Title.Text = "Graph Name";
    pane.XAxis.Title.Text = "X axis name";
    pane.YAxis.Title.Text = "The name of the Y axis";