I am begining to use ZedGraph and having a strange problem: compiler (C# VS2010) is telling me that "ZedGraph.GraphPane doesn´t contain a definition for Chart...". Code below:
// get a reference to the GraphPane
GraphPane myPane = zgcAnalise.GraphPane;
zgcAnalise.GraphPane.PaneFill.Color = Color.Aquamarine;
myPane.Chart.Fill = new Fill(Color.Aquamarine);
My project has reference to ZedGraph and .DLLs are on project directory. Can anyone say what stupid thing I am missing, please? Thanks...