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

📄 _gr_common_axes.ado

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 ADO
字号:
*! version 1.0.0  15apr2002
program define _gr_common_axes
	syntax anything(name=gphlist id="graph list") [, Xaxis Yaxis ]

	capture noisily {

		global T_xaxis
		global T_yaxis
		tempname plreg
		.`plreg' = .plotregion.new, style(scheme)
		global T_plreg `plreg'

		foreach graph of local gphlist {
			.`graph'._gr_axes_wrk
		}

		if "$T_xaxis" != "" {
			.$T_xaxis.set_ticks
		}
		if "$T_yaxis" != "" {
			.$T_yaxis.set_ticks
		}

		capture mac drop T_plreg
		capture mac drop T_yaxis
		capture mac drop T_xaxis

	}
end

⌨️ 快捷键说明

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