I use a CNiGraph, on which i have some points. My problem is that each point has his "Time" appear on the X axis. How can I make these points appear ?
Thanks"				CNiGraph m_graph;
    CNiAxis xAxis = m_Graph.Axes.Item("XAxis");
    xAxis.Caption = "Time";
    xAxis.SetDiscreteBase(5.274);
    xAxis.DiscreteInterval = 1;
    xAxis.FormatString = ("n:ss");
    xAxis.Visible = true;