Ejemplo n.º 1
0
        private PointPair MakePointPair(ClusterGraphResults.Point point)
        {
            var dataSet = GraphResults;

            return(new PointPair(point.ColumnIndex + 1, dataSet.RowCount - point.RowIndex)
            {
                Tag = point.Color
            });
        }
Ejemplo n.º 2
0
 private void SelectPoint(ClusterGraphResults.Point point)
 {
     SkylineWindow?.SelectPathAndReplicate(point?.IdentityPath, point?.ReplicateName);
 }