Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: chart for CustomField block in Dashboard #91

Open
tianyang-abc opened this issue Jan 31, 2021 · 1 comment
Open

feature: chart for CustomField block in Dashboard #91

tianyang-abc opened this issue Jan 31, 2021 · 1 comment

Comments

@tianyang-abc
Copy link

I want Redmine to be a data presentation platform. Source number is fetched from a lot of CustomFields that updated by background RAKE TASK or user manually. I want a pie chart and/or a report to display the proportion as to another Issue property from custom field, ie sales volume as to business department.

@tianyang-abc
Copy link
Author

Following plugin's document, I create my own dashboard BLOCK like this.

_test.html.slim:

= additionals_library_load :chartjs

canvas id="myChart"

javascript:
  var ctx = document.getElementById('myChart');
  var myChart = new Chart(ctx, {
      type: 'bar',
      data: {
          labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],
          datasets: [{
              label: '# of Votes',
              data: [12, 19, 3, 5, 2, 13],
              backgroundColor: [
                  'rgba(255, 99, 132, 0.2)',
                  'rgba(54, 162, 235, 0.2)',
                  'rgba(255, 206, 86, 0.2)',
                  'rgba(75, 192, 192, 0.2)',
                  'rgba(153, 102, 255, 0.2)',
                  'rgba(255, 159, 64, 0.2)'
              ],
              borderColor: [
                  'rgba(255, 99, 132, 1)',
                  'rgba(54, 162, 235, 1)',
                  'rgba(255, 206, 86, 1)',
                  'rgba(75, 192, 192, 1)',
                  'rgba(153, 102, 255, 1)',
                  'rgba(255, 159, 64, 1)'
              ],
              borderWidth: 1
          }]
      },
      options: {
          scales: {
              yAxes: [{
                  ticks: {
                      beginAtZero: true
                  }
              }]
          }
      }
  });
  myChart.canvas.style.height = '250px';
  myChart.canvas.style.width = '400px';

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

2 participants