nIndex | (Long) Removes the nIndex-th graph in the list of graphs |
---|
var oTView = pMe.Items("../TrendView");
var oTrend = oTView.Trends(0);
if (oTrend)
{
var nGraphs = oTrend.GraphsCount;
if (nGraphs)
{
oTrend.RemoveGraph(nGraphs);
}
}