Cann't resize the height of subwindows

 

Hi everybody,

You can adjust the height of subwindows by hand with mouse drag.
But when once it set by using 
ChartSetInteger(chart_ID,CHART_HEIGHT_IN_PIXELS,sub_window,value)
it can't be resized with mouse.

Is there any way to resize it again with mouse drag ?

 
stitchtrader:

Hi everybody,

You can adjust the height of subwindows by hand with mouse drag.
But when once it set by using 
it can't be resized with mouse.

Is there any way to resize it again with mouse drag ?

You are right, I can't see a way, seems like a bug.

You can report this to ServiceDesk.

Get in touch with developers using Service Desk!
Get in touch with developers using Service Desk!
  • www.mql5.com
We therefore attach great importance to all user reports about issues in our programs and try to answer each one of them.
 
angevoyageur:

You are right, I can't see a way, seems like a bug.

You can report this to ServiceDesk.

Hi Alain! d(^_^)b

Thank you for your help. I'll try.

Have a nice weekend !

 

Hi

you can use this sample command to change the height of sub window to zero (to hide) or another positive size (to show).

  int Sub_Window_ID_SMT_Divergence=ChartWindowFind(0,"SMT-Divergence");

  ChartSetInteger(0,CHART_HEIGHT_IN_PIXELS,Sub_Window_ID_SMT_Divergence,60);


Reason: