⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pie_ctrl.idlg

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 IDLG
字号:
/*
	pie_ctrl.idlg  controls for pie graphs

*!  VERSION 1.1.1  01apr2005

*/

  GROUPBOX gb_type         _lft      _top      _cwd1     _ht11h,	///
	label("Pie chart")
  RADIO    rb_over         _ilft     _ss       _inwd     .,		///
	first label("Graph by categories")				///
	onclickon(script pie_graph_by_cat)
  RADIO    rb_varlist      @         _ss       @         .,		///
	last label("Graph by variables")				///
	onclickon(script pie_graph_by_var)

  GROUPBOX gb_vars         @         _ms       @         _ht4,
  TEXT     tx_over         _indent   _ss       _inwd     .,		///
  	label("Category variable:")
  DEFINE y @y
  DEFINE x @x
  VARNAME  vn_over         @         _ss       _vnwd     .,		///
	label("Category variable") option(over)

  TEXT     tx_var          +150      y         @         .,		///
  	label("Variable: (optional)")
  VARNAME  vn_var          @         _ss       @         .,		///
  	label("Variable")

  TEXT     tx_vars         x         y         _cwd5     .,		///
	label("Variables:")
  VARLIST  vl_var          @         _ss       @         .,		///
	label("Variables")

  DEFINE holdy @y
  GROUPBOX gb_missing      _lft2     _top      _cwd1     _ht4h,		///
	label("Missing values")
  CHECKBOX ck_miss         _ilft2    _ss       _cwd3     .,		///
	label("Keep missing values as categories")			///
	option(missing)
  CHECKBOX ck_cw           @         _ms       @         .,		///
	label("Casewise treatment of missing values")			///
	option(cw)

  GROUPBOX gb_app          _lft2     _xls      _cwd1     _ht21h,	///
	label("Appearance of pie chart")
  GROUPBOX gb_ord          _ilft2    _ms       _cwd3     _ht8h,		///
	label("Order of slices")
  DEFINE holdy1 @y
  RADIO    rb_def          _indent   _ss       _cwd4_5   .,		///
	label("Default order") first					///
	onclickon(gaction main.vn_order.disable)
  DEFINE holdy @y
  RADIO    rb_size         @         _ss       @         .,		///
 	label("Size order") option(sort) 				///
	onclickon(gaction main.vn_order.disable)
  RADIO    rb_order        @         _ss       @         .,		///
	label("Order by this variable:") last				///
	onclickon(gaction main.vn_order.enable)
  VARNAME  vn_order        _rbsep    _ss       _vnwd     .,		///
	label("Order by this variable") option(sort)
  CHECKBOX ck_desc         _lft4_4   holdy     _cwd4_3   .,		///
	label("Reverse this order") option(descending)
  CHECKBOX ck_nocl         @         _ms       _cwd4_3   .,		///
	label("Counterclockwise") option(noclockwise)

  GROUPBOX gb_outl         _ilft2    _xxxxxls  _cwd4_1   _ht5h,		///
	label("Outline of slices")
  DEFINE holdy @y
  TEXT     tx_lcol         _iilft2   _ss       _txswd    .,		///
	label("Color:") right
  COMBOBOX cb_lcol         _txssep   @         _tcr2b4gi .,		///
	contents(colors) option(lcolor)					///
	onselchangelist(main_lcol_change) dropdownlist
  COLOR    cl_lcol      _tcr2b4gisep @         _colorwd  .,		///
	option(lcolor)
  TEXT     tx_lwid         _iilft2   _ls       _txswd    .,		///
	label("Width:") right
  COMBOBOX cb_lwid         _txssep   @         _txr2b4gi .,		///
	contents(linewidths) option(lwidth) dropdownlist
  TEXT     tx_angle        _lft4_4   holdy     _cwd4_2   .,		///
	label("Angle of first slice: (degrees)")
  SPINNER  sp_angle        _indent2  _ss       _spwd     .,		///
	default(90) min(0) max(360) option(angle)
  TEXT     tx_int          _lft4_4   _ls       90        .,		///
	label("Color intensity:") right
  EDIT     ed_int          +100       @        _en7wd    .,		///
	label("Intensity") option(intensity)
/* End pie_ctrl.idlg  */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -