YAMP.HeatmapPlotValue.this C# (CSharp) Method

this() public method

Gets one particular point of a heatmap series (we only have 1 heatmap series!).
public this ( int index, int point ) : HeatPoint
index int Obsolete since we only have 1 series.
point int The point to get (0.. N - 1, where N is the number of points).
return HeatPoint
        public HeatPoint this[int index, int point]
        {
            get
            {
                return data[point];
            }
        }

Same methods

HeatmapPlotValue::this ( int index ) : Points