相同的图表事件,相同的X轴,ng2图表的不同Y轴

时间:2017-06-05 21:32:09

标签: javascript angular chart.js ng2-charts

我正在为Angular 2应用程序利用以下ChartJS框架:

https://github.com/valor-software/ng2-charts

http://www.chartjs.org/

我希望做到以下几点:

  1. 在顶部堆叠一个条形图,在下面堆叠一个折线图 - 基本上HTML页面上的两个#include <stdio.h> void insert(int val, int *n, int v[]) { int index; index = n - 1; if (n == 0) { v[0] = val; // check if array is empty n = n + 1; // v[0] becomes the given value } // increase size of array if (val > v[index]) { v[index+1] = val; // given value is bigger than the last value in array n = n + 1; // increase size } else { while (index >= 0 && v[index] > val) { v[index+1] = v[index]; //shift items to the right index--; } v[index + 1] = val; //after moving elements to the right n = n + 1; // i set the value to the valid position } } void display(int n, int v[]) { int i; for (i = 0;i < n; i++) printf("%d ", v[i]); } int main(void) { int v[10] = { 12, 23, 34, 41, 69, 71, 81, 91, 100 }; int n; n = 9; // size of array insert(101,n,v); // 101 is given value to insert display(n,v); return 0; } 标记。
  2. 在其中,它共享相同的X轴值(例如时间)但不同的Y轴值(例如条形图将是1,2,3,4,而折线图将是A,B,C, d)。
  3. 两个图表都会使用相同的<canvas></canvas>和/或chartHover事件。
  4. 理想情况下,我希望用户将鼠标悬停在任一图表上,但共享相同的互动。例如,如果用户将鼠标悬停在条形图上,条形图和折线图上都会出现一条垂直线(反之亦然)。

0 个答案:

没有答案