Tally Graph で走行距離を棒グラフにして表示

月間走行距離を表した棒グラフを、投稿時に自動更新していく手段として、Tally Graph プラグインを使う際の方法。

備忘録として書いておこう。

テーマ→カスタマイズ→ウィジェット→
表示させたい位置のウィジェットを選択し、[ウィジェットを追加]から[PHP Code]を
選択し、下記コードを記述。
月間走行距離の棒グラフ表示
Monthly Running Distance
<div>
<?php echo tally_graph(‘key=distance&tally_interval=month&interval_count=8&cht=bvs&chs=265×180&chdlp=b&method=cumulative&chtt=distance&chdl=Distance(km)&chco=ff8000,ff0000’); ?&gt
</div>

年間走行距離の棒グラフ表示
Yearly Running Distance
<div>
<?php echo tally_graph(‘key=distance&tally_interval=year&interval_count=7&cht=bvs&chs=265×200&chdlp=b&method=cumulative&chtt=distance&chdl=Distance(km)&chco=ff8000,ff0000’); ?>
</div>

日々の投稿時には、カスタムフィールドに事前に設定している
Distance
という項目に、走行距離をkm単位の数値のみをその都度登録していくだけ。

月間、年間の走行距離の棒グラフは自動的に更新されていく。

Leave a Comment


NOTE - You can use these HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>