Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added possibility to add a colored min/max area for a series #560

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

siberianbearr
Copy link

This change allows to add min/max values to a series. The renderer takes the series color as default color an modifies it a bit, alternatively a custom color can be passed.

var graph = new Rickshaw.Graph( {
	element: document.querySelector('#chart'),
	renderer: 'line',
	series: [{
		color: 'steelblue',
		data: [ { x: 0, y: 23}, { x: 1, y: 15 }, { x: 2, y: 79 }, { x: 3, y: 40 } ],
		min: 20,
		max: 50,
		limitColor: "#FF6766" 
		}]
	});

graph.render();

Produces this output:
simple

More complex example:
not simple

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant