Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to find a free charting library for JS that does not require jQuery and is able to add vertical cursor bars at indicated locations. Interactivity would be nice. I only need a line chart, no doughnuts required. Anyone know if this creature exists?

share|improve this question
    
Vertical cursor? Do you mean vertical scroll? –  kidwon Jun 13 at 22:27
    
Sorry, I mean simply having vertical lines that can delineate certain portions of the data. –  NargothBond Jun 16 at 12:08

3 Answers 3

up vote 2 down vote accepted

Line Chart with Marker

Are you referring to something like this? A live demo can be seen here. This was done with ZingChart, which is free to use. A marker was set on the x-axis with a range and lowered opacity.

Let me know if you were looking for something else and I'll put together another demo.

share|improve this answer

You can do this with amCharts, here is a stacked area chart demo. If you don't need a fill, simply set fillAlphas to 0. and stackType of value axis to "none"

Disclaimer: I am the author of amCharts.

share|improve this answer
    
It's a very nice library, but as I said I cannot use jQuery. But keep up the good work! –  NargothBond Jun 16 at 12:09
    
amCharts doesn't depend on jQuery or any other lib. Our site uses jQuery for other purposes. –  zeroin Jun 17 at 5:24

Here is an example made with D3js Framework, it might interest you..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.