anychart.onDocumentReady(function () {
var chart = anychart.bubble();
var series = chart.bubble([
{x: 1, value: 1.0, size: 2},
{x: 2, value: 1.6, size: -7},
{x: 3, value: 1.2, size: -4},
{x: 4, value: 1.9, size: 3}
series.displayNegative(true);
var state = series.normal();
state.negativeFill([{offset: 0.2, color: '#DCE35B', opacity: 0.6}, '#45B649 0.6']);
chart.title('Set state negative fill parameters as an array');
chart.container('container');