BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sasone
Quartz | Level 8

いつもお世話になっております。

 

以下のようにタイトルステートメントのオプションとして
justify=left color=blueと書いているのですが、
出力height.pngのタイトルが左詰めになってくれません。

ods listing gpath=".";
ods graphics/imagename="height" imagefmt=png;
title "身長のヒストグラム" justify=left color=blue;
proc sgplot data=sashelp.class;
  histogram height;
run;

どのようにしたら、タイトルステートメントの体裁を変更できるのでしょうか。
ご教示のほど何卒よろしくお願いいたします。

 

1 ACCEPTED SOLUTION

Accepted Solutions
yu_sas
SAS Employee

こんにちは。

 

構文としては、以下のようにオプションが先に来る形式になっています。

TITLE<n> <text-options> <"text"> ;

 

ですので、以下のような記述になります。

 

 

title justify=left color=blue "左" justify=right color=red "右";

 

View solution in original post

2 REPLIES 2
yu_sas
SAS Employee

こんにちは。

 

構文としては、以下のようにオプションが先に来る形式になっています。

TITLE<n> <text-options> <"text"> ;

 

ですので、以下のような記述になります。

 

 

title justify=left color=blue "左" justify=right color=red "右";

 

sasone
Quartz | Level 8

yu_sasさま

 

早速のご回答、誠に有難うございました。
タイトルの体裁を変更することができました。