-
Notifications
You must be signed in to change notification settings - Fork 932
Closed
Description
In 1.4.5, this:
var graph = new Rickshaw.Graph({
element: document.querySelector("#chart"),
width: 235,
height: 85,
renderer: 'area',
stroke: true,
series: [
{
data: [
{ x: 0, y: 40 },
{ x: 1, y: 1 }
],
color: 'rgba(192,132,255,0.3)',
stroke: 'rgba(0,0,0,0.15)'
},
{
data: [
{ x: 0, y: 22 },
{ x: 1, y: 50 }
],
color: 'rgba(96,170,255,0.5)',
stroke: 'rgba(0,0,0,0.15)'
}
]
});
graph.renderer.unstack = true;
graph.render();Used to produce
Seems like graph.renderer.unstack = true; makes no difference...
Thanks,
Chris.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

