Skip to content
Snippets Groups Projects
Select Git revision
  • b952bd88f23f94be7f6b23dc5bcc74d319c4b2bc
  • develop default protected
  • master protected
  • feature/POL1-813-error-report-sensu-check
  • 0.23
  • 0.22
  • 0.21
  • 0.20
  • 0.19
  • 0.18
  • 0.17
  • 0.16
  • 0.15
  • 0.14
  • 0.13
  • 0.12
  • 0.11
  • 0.10
  • 0.9
  • 0.8
  • 0.7
  • 0.6
  • 0.5
  • 0.4
24 results

gws_indirect.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;