How to use the @patternfly/react-charts.ChartTheme.light function in @patternfly/react-charts

To help you get started, we’ve selected a few @patternfly/react-charts examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github patternfly / patternfly-react / packages / patternfly-4 / react-charts / src / components / LineChart / examples / SimpleChart.js View on Github external
render() {
    return (
      
        
          
          <div>
            <div>
              <div>
                {this.getChart(ChartTheme.light.green)}
              </div>
              <div>
                {this.getlegend(ChartTheme.light.green)}
              </div>
            </div>
          </div>
        
        
          
          <div>
            <div>
              {this.getChart(ChartTheme.light.multi)}
            </div>
            <div></div></div>
github patternfly / patternfly-react / packages / patternfly-4 / react-charts / src / components / StackChart / examples / HorizontalChart.js View on Github external
render() {
    return (
      
        
          
          <div>{this.getChart(ChartTheme.light.blue)}</div>
        
        
          
          <div>{this.getChart(ChartTheme.light.multi)}</div>
        
      
    );
  }
}
github patternfly / patternfly-react / packages / patternfly-4 / react-charts / src / components / HeatMap / examples / SimpleHeatMap.js View on Github external
render() {
    return (
      
        
          
          <div>{this.getHeatMap(ChartTheme.light.blue)}</div>
        
        
          
          <div>{this.getHeatMap(ChartTheme.light.multi)}</div>
        
      
    );
  }
}
github patternfly / patternfly-react / packages / patternfly-4 / react-charts / src / components / LineChart / examples / SimpleChart.js View on Github external
<div>
                {this.getlegend(ChartTheme.light.green)}
              </div>
            
          
        
        
          
          <div>
            <div>
              {this.getChart(ChartTheme.light.multi)}
            </div>
            <div>
              {this.getlegend(ChartTheme.light.multi)}
            </div>
          </div>
        
      
    );
  }
}
github patternfly / patternfly-react / packages / patternfly-4 / react-charts / src / components / PieChart / examples / SimpleChart.js View on Github external
render() {
    return (
      
        
          
          <div>
            <div>{this.getChart(ChartTheme.light.blue)}</div>
            {this.getLegend(ChartTheme.light.blue, false)}
          </div>
        
        
          
          <div>{this.getChart(ChartTheme.light.multi)}</div>
          {this.getLegend(ChartTheme.light.multi, true)}
        
      
    );
  }
}
github patternfly / patternfly-react / packages / patternfly-4 / react-charts / src / components / BarChart / examples / SimpleChart.js View on Github external
render() {
    return (
      
        
          
          <div>{this.getChart(ChartTheme.light.blue)}</div>
        
        
          
          <div>{this.getChart(ChartTheme.light.multi)}</div>
        
      
    );
  }
}
github patternfly / patternfly-react / packages / patternfly-4 / react-charts / src / components / BulletChart / examples / SimpleChart.js View on Github external
render() {
    return (
      
        
          
          <div>{this.getHeatMap(ChartTheme.light.blue)}</div>
        
        
          
          <div>{this.getHeatMap(ChartTheme.light.multi)}</div>
        
      
    );
  }
}
github patternfly / patternfly-react / packages / patternfly-4 / react-charts / src / components / HeatMap / examples / SimpleHeatMap.js View on Github external
render() {
    return (
      
        
          
          <div>{this.getHeatMap(ChartTheme.light.blue)}</div>
        
        
          
          <div>{this.getHeatMap(ChartTheme.light.multi)}</div>
        
      
    );
  }
}
github patternfly / patternfly-react / packages / patternfly-4 / react-charts / src / components / StackChart / examples / HorizontalChart.js View on Github external
render() {
    return (
      
        
          
          <div>{this.getChart(ChartTheme.light.blue)}</div>
        
        
          
          <div>{this.getChart(ChartTheme.light.multi)}</div>
        
      
    );
  }
}
github patternfly / patternfly-react / packages / patternfly-4 / react-charts / src / components / BarChart / examples / SimpleChart.js View on Github external
render() {
    return (
      
        
          
          <div>{this.getChart(ChartTheme.light.blue)}</div>
        
        
          
          <div>{this.getChart(ChartTheme.light.multi)}</div>
        
      
    );
  }
}