highchartsで値が0のものは非表示にする方法

JavaScriptだと、こう。

dataLabels: {
  formatter: function() {
    if (this.y != 0) {
      return this.y;
    }
  }
}

CoffeeScriptだと、こう。

dataLabels: {
  formatter: ->
    this.y unless this.y == 0
}

formatterを指定すればいいのね。。。


カテゴリー JavaScript | タグ | パーマリンク

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です