Discussion of article "Graphical Interfaces X: Text selection in the Multiline Text box (build 13)" - page 16

 
Anatoli Kazharski:

To implement vertical scaling in chart objects, you need to use these properties:

  • CHART_SCALEFIX - fixed scale mode
  • CHART_FIXED_MAX - fixed maximum of the chart.
  • CHART_FIXED_MIN - fixed minimum of the chart.

It is implemented in the same way as navigation (horizontal scrolling) in chart objects is implemented now.


have the restrictions specified in the help been removed already?

 
Konstantin:

Have the restrictions on the certificate been lifted?

Those restrictions are not the same thing.

//---

Example:

      //--- Fixed zoom mode
      ::ChartSetInteger(m_sub_chart_id[i],CHART_SCALEFIX,true);
      //--- Maximum and minimum
      ::ChartSetDouble(m_sub_chart_id[i],CHART_FIXED_MAX,2.0);
      ::ChartSetDouble(m_sub_chart_id[i],CHART_FIXED_MIN,1.0);