In my application i have to plot the 3 D pie chart for showing the market research data. I have previously worked on the jqplot for bar and line graph. so i planned to use the same one for this. i have tried to find the 3 D pie in the jqplot but unable to do it. Can we have the 3 D pie chart in jqplot. Any other free java script plotting framework available for doing this.
It seems as though JQPlot does support pie charts, see here: Pie & Donut charts
There are other alternatives (like amCharts - 3D pie chart), but I'd stick with the free stuff personally. You could dress up those JQPlot pie charts nicely with just the right use of colours ;).
Related
I want to display the labels and datasets of pie & doughnut charts on their sides. I searched for many options on the internet including stackoverflow, but couldn't find a relative solution for my case. Maybe I missed something.
Now I have:
I need to display the chart data on its side like this: (For my pie and doughnut charts above)
First of all, I dont see any bar chart here. Second, what library are you using for making charts? If you couldn't find proper option to display label in that library, I can recommend you to use Amcharts, its more flexible. Let me know if you get your desired results
I am trying to plot daily tasks in what i would describe as a discontinuous stacked bar graph. Another description would be a vertical gantt chart of past events.
If the description is lacking, the result i want is something like that shown in the image below (made in paint).
All task have a duration (from-to time) and can have different categories which results in different colours with belonging legends.
I have been playing around with two javascript plotting libraries; chart.js and plotly.js, and looking at others but i haven't found anything that can do what i want to achieve. Both chart.js and plotly have stacked bar graphs, but i see no way of getting spaces in between the bars and getting the legends right.
Do anyone have an idea if this is possible in any these two libraries? If not is there an alternative library where this can be done?
Regards
I am developing Andrews'Pitchfork on an OHLC chart using High chart library. I have plot the graph but i am not able to find a way to draw a line on the chart. How can this be achieve.
Any help would be highly appreciated.
The graph looks like this. I have plot the graph but how to draw line does high chart gives this ability ?
Andrew PitchFork
Yes. You can use SVGRenderer.path function for this: https://api.highcharts.com/class-reference/Highcharts.SVGRenderer#path
I am searching for a JS chart like in the image. I got it from an excel file. The percentage is incorect, it should be from 0 to 100%. Does anyone know a library which provides this kind of chart ?
Seems like you're looking for a bullet chart. Most of the major charting libraries provide bullet charts as a standard chart type. You could also implement it as a column (vertical bar) chart with some additional styling.
Here is a ZingChart demo of a vertical bullet chart with an area marker and here is a similar demo implemented as a mixed chart - a column chart and a scatter plot marker for the "goal" line. Both replicate your image.
I'm on the ZingChart team, so don't hesitate to reach out if you have any questions!
i'm currently working with d3.js and with the nvd3 library, i need a chart that has multiple bars that can be stacked and grouped like this example http://nvd3.org/ghpages/multiBar.html plus a line chart like the following example http://nvd3.org/ghpages/linePlusBar.html
So what I need exactly is a MultiBarChart with a line chart , can anyone show me an example somewhere. Thanks