혼자 모쿠 모쿠 모임에 Qiita와 동일한 태그 차트를 만들어보십시오.

혼자 모쿠 모쿠 모임 에 적당히 자신의 기사가 모여 왔기 때문에, Qiita와 같은 태그 차트를 만들어 보았다.
Google Chart API를 사용하기만 하면 됩니다.

덧붙여서 Qiita는 아래. (정확히 트렌드에 있던 분)



Vue에서.
<template>
  <div ref="chart"></div>
</template>

<script>
export default {
  props: ['tags'],

  mounted() {
    google.charts.load("current", { packages: ["corechart"] });
    google.charts.setOnLoadCallback(this.drawChart.bind(this));
  },

  methods: {
    drawChart() {
      const tags = this.tags.map(tag => {
        return [tag.tags.name, tag.cnt];
      });
      const data = new google.visualization.DataTable();
      data.addColumn("string", "Tag");
      data.addColumn("number", "Count");
      data.addRows(tags);
      const options = {
        width: 360,
        height: 256
      };
      const chart = new google.visualization.PieChart(this.$refs.chart);
      chart.draw(data, options);
    },
  }
};
</script>

전화
<user-tag-chart :tags="<?= h(json_encode($tagSummary)) ?>"></user-tag-chart>

할 수 있었다.



몹시 기분 나쁘기 때문에 Qiita와 같이(?)10위 이하를 정리했다.



성과가 눈에 보이면 기분이 좋다.

혼자 모쿠 모쿠 모임

좋은 웹페이지 즐겨찾기