Skip to content
Snippets Groups Projects
Select Git revision
  • 244e753db27ae794d9c67f481eadfebb111e16a8
  • develop default
  • master protected
  • NGM-30-hover-popup
  • svg-test
  • master-conflicted
  • 0.13
  • 0.12
  • 0.11
  • 0.10
  • 0.9
  • 0.8
  • 0.7
  • 0.6
  • 0.5
  • 0.4
  • 0.3
  • 0.2
  • 0.1
19 results

test_correlator.py

Blame
  • BarGraph.tsx 516 B
    import React, {ReactElement} from 'react';
    import {Bar} from 'react-chartjs-2';
    import {DataSetProps} from './types';
    
    
    import {
        Chart as ChartJS,
        CategoryScale,
        LinearScale,
        BarElement,
        Title,
        Tooltip,
        Legend,
    } from 'chart.js';
    
    
    ChartJS.register(
        CategoryScale,
        LinearScale,
        BarElement,
        Title,
        Tooltip,
        Legend
    );
    
    function BarGraph(data: DataSetProps): ReactElement {
        return (
            <Bar data={data.data} options={{}}/>
        );
    }
    
    export default BarGraph;