Example #1
0
 /// <summary>
 /// Method used to get the bool value for series or segment has dragging base.
 /// </summary>
 private bool IsDraggableSeries(ChartSeriesBase chartSeries)
 {
     if (ChartExtensionUtils.IsDraggable(chartSeries))
     {
         ChangeSelectionCursor(false);
         return(true);
     }
     else
     {
         return(false);
     }
 }