Skip to content

Instantly share code, notes, and snippets.

@svschannak
Created August 22, 2017 12:29
Show Gist options
  • Save svschannak/ebdc1a253609680b3a101d9df22016dd to your computer and use it in GitHub Desktop.
Save svschannak/ebdc1a253609680b3a101d9df22016dd to your computer and use it in GitHub Desktop.
Progess Chart with Victory Pie
import {VictoryPie, VictoryTheme} from 'victory';
<VictoryPie
padAngle={0}
// used to hide labels
labelComponent={<span/>}
innerRadius={70}
width={200} height={200}
data={[{'key': "", 'y': this.state.metric}, {'key': "", 'y': (100-this.state.metric)} ]}
colorScale={["#19B3A6", "#EEEEEE" ]}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment