質問

どのようにラベルを取り外してy軸を保持することができますか?

軸を取り外したくない、ラベルだけです。基本的にはテキストまたは数字のないY軸

画像の入力ここにある

chart1.addAxis("y", {
                labels: false,
                vertical : true,
                leftBottom : true,

            });
.

役に立ちましたか?

解決

can you try like this:

addAxis("y", {
                vertical: true,
                fixLower: "major",
                fixUpper: "major",
        labelFunc:function(){
          return " ";
             }
         });

Pls. Dont remove the one single space inside the quotes.

or here is a post which shows how to delete an axis from the chart. Hiding x Axis in dojox.charting

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top