Add a 'stream-center' mode in stackedArea using 'silhouette' as the

chart offset and 'inside-out' as the chart order.
This commit is contained in:
dragansah 2012-08-29 15:26:34 +02:00
parent 0ea195be72
commit 6e209c2769

View File

@ -304,6 +304,10 @@ nv.models.stackedArea = function() {
chart.offset('wiggle');
chart.order('inside-out');
break;
case 'stream-center':
chart.offset('silhouette');
chart.order('inside-out');
break;
case 'expand':
chart.offset('expand');
chart.order('default');