Skip to content

Instantly share code, notes, and snippets.

@luizcarvalho
Created November 19, 2018 19:26
Show Gist options
  • Save luizcarvalho/f9327062459efff587f2875aa423e6c4 to your computer and use it in GitHub Desktop.
Save luizcarvalho/f9327062459efff587f2875aa423e6c4 to your computer and use it in GitHub Desktop.
// CONHECIMENTO E TECNICA
var conhecimento_ctx = document.getElementById("conhecimento_chart");
var data = {
datasets: [{
data: [ 2, 1, 2, 2, 1, 1, 1],
backgroundColor: [
'#7E1abc9c', '#2ecc717E', '#3498db7E','#9b59b67E', '#f1c40f7E', '#e67e227E', '#e74c3c7E'
],
hoverBackgroundColor: '#2388ed'
}],
// These labels appear in the legend and in the tooltips when hovering different arcs
labels: ["Software gerencial","Tributos","Liderança / Gestão de pessoas","Recursos humanos","Comercial / Vendas","Gestão financeira","Gestão ou operação de franquias",]
};
var options = {
scale: {
ticks: {
suggestedMin: 0,
suggestedMax: 3,
stepSize: 1
}
},
}
var ConhecimentoChart = new Chart(conhecimento_ctx, {
data: data,
options: options,
type: 'polarArea',
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment