IChannelDrawing.cs 228 B

1234567891011
  1. 
  2. namespace MuchInfo.Chart.WPF.Primitives.Interfaces
  3. {
  4. public interface IChannelDrawing : IDrawingTool
  5. {
  6. void ChangeWidth(float newY);
  7. float TopY();
  8. float BotY();
  9. float ChanX();
  10. }
  11. }