2016-05-26 5 views
0

がPhantomJSに次の設定を渡し動作しない:phantomJS/highcharts:なぜ '高さ'

{ 
    u'subtitle': { 
    u'text': u'2016-05-19 12:09 to 2016-05-26 12:09' 
    }, 
    u'title': { 
    u'text': u'Query' 
    }, 
    u'series': [ 
    ], 
    u'yAxis': { 
    u'title': { 
     u'text': u'Count' 
    } 
    }, 
    u'tooltip': { 
    u'pointFormat': u'<span style="color:{point.color}">{series.name}</span>: <b>{point.y}</b><br/>' 
    }, 
    'height': 1000, 
    u'credits': { 
    u'enabled': False 
    }, 
    u'plotOptions': { 
    u'column': { 
     u'colorByPoint': False 
    } 
    }, 
    u'xAxis': { 
    u'type': u'category' 
    }, 
    u'type': u'chart', 
    u'legend': { 
    u'enabled': True 
    } 
} 

が、PNGは1200 * 800で出力?どうして?何かが足りない?

おかげ

+0

あなたの 'height'設定は' chart'プロパティオブジェクト内にありません。また、すべての「u」には何がありますか? – wergeld

+0

@wergeldチャートプロパティオブジェクト? – BAE

答えて

2

は、すでに述べたようにはコメントで答えをwergeld - height(参照のためthe APIを参照)、グラフのオプションでchartオブジェクトのプロパティです。したがって、次のように使用できます:

{ 
    'chart': { 
    'height': 1000 
    }, 
    'subtitle': { 
    'text': '2016-05-19 12:09 to 2016-05-26 12:09' 
    }, 
    ...rest of your settings... 
関連する問題