혼자 모쿠 모쿠 모임에 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위 이하를 정리했다.

성과가 눈에 보이면 기분이 좋다.
혼자 모쿠 모쿠 모임
Reference
이 문제에 관하여(혼자 모쿠 모쿠 모임에 Qiita와 동일한 태그 차트를 만들어보십시오.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/dala00/items/b45f8fc1b8eaaebf0e42텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
                                
                                
                                
                                
                                
                                우수한 개발자 콘텐츠 발견에 전념
                                (Collection and Share based on the CC Protocol.)