Skip to content

Instantly share code, notes, and snippets.

@tripp
Created January 25, 2011 16:55
Show Gist options
  • Save tripp/795203 to your computer and use it in GitHub Desktop.
Save tripp/795203 to your computer and use it in GitHub Desktop.
var score_chart = new Y.Chart({
dataProvider: scoreDataValues,
type: "bar",
render: "#chart",
seriesCollection: [
{
type: "bar",
keys: ["value"],
styles: {
fill: {
color: ["#E57627", "#77BB22", "#426AB3"]
}
}
}
],
axes: {
values: {
styles: {
majorUnit: {
count: 4
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment