Google Line Chart: can I insert error bars? - google-api

Cheers all.
I'm using a line chart, created with the Google API for draw charts (this chart).
It's working well, but now I have a problem. I have to insert some error bars or something similar (for example, the variance). Is it possible to it with the google API? How can I do it?
My target is to have something like this.

Yes that's possible,
the line chart supports column roles, the one you're looking for is interval

Related

Kibana - Create line Chart on Bar Chart in Same graph

I am a newbie in Elastic Stack and i am trying the following and i am struck.
I want to render a line chart on the bar chart on same graph. I have been browsing for long time now but could not find any link for this.
In Kibana 5.2, is it possible to create a line chart on bar chart on same graph ? Can someone who has done it in the past confirm if it is feasible ?
if yes, can you share any pointers.
If you want to mix bars and lines it's possible via the Timelion plugin (which is included in Kibana since version 5). Put something like this in the Timelion tab:
.es(*).bars(),.es(*).lines()
And you should be able to see something like:
Now it's just a matter of doing the query you want to plot.
For understanding it in detail, on Timelion tab, on top right corner, you will see a tab - Docs. Once you click on Docs, you will get a link - Go to Tutorial.
Try the link and it walks you through the steps.

angular-nvd3 how to show data values for line chart

I want to create a LINE chart using angular-nvd3, with each data point has label on top and displaying the data value. I was able to find the option "showValues" and it can work for the discreteBarChart, but that options doesn't seem to work for line chart.
Any help? below is a picture of what I wanted. Update: i know that for a matter of fact the "showValues" is not in the LineChart. But is there any workaround.?

Percent Metric in Kibana 4?

Hey I'm using the elk stack to store and view test results. I want to see a nice display something like this:
_Pass_____Fail_
99.99%___00.01%
However I can't find any way to do this. Is this possible in Kibana 4? I feel like this is a very basic feature that should be available...
You can certainly display the count of pass/fail in a table. Displaying the percents isn't possible in Kibana 4.0 or 4.1
If you need a visualization of the percentages, you can use a pie chart or a bar chart in percentage mode.

Connect points in DHTMLX scatter chart

I have about 500 XY points which I would like represent as line using DHTMLXChart. Apparently the only suitable chart (scatter) do not allowing to do it. Any idea how to solve this issue?
There is no native way to do this.
You could use line chart with markers:
Example
Ok on that confirmation you're not bound to a DHTMLX, I would go with Google Charts it's based on opinion, but more importantly on functionality.
The Google Charts API is very easy to work with as it takes raw Javascript data and applies it to the chart and that data may be shoved into multidimensional arrays or as I prefer, JSON Data.
Additionally the Google Charts API has what you are after which is located at https://google-developers.appspot.com/chart/interactive/docs/gallery/linechart or alternatively...
https://developers.google.com/chart/interactive/docs/gallery/scatterchart
P.S. It may be a hefty documentation to read, but learning Google Charts API pays dividends and this would Replace DHTMLX instead of being an additional plugin.
Hope that helps.

Highlight Data Points in Birt Reports

creating simple charts with BIRT is easy, but now I would like to bring some more life to them...
imagine a simple line chart. Let's define as a requirement, that the maximum value should be highlighted. A further requirement would be that if the user clicks on this data point, something happens.
How can I solve this?
I can imagine that I could created a second value series which consists only of the highlighted data points.
But it would be nicer if there was a JavaScript API (or even a server side java api) with which I could loop through the data points and add a highlight on the fly. Is this possible?
I think I've found a good starting point:
http://www.birt-exchange.org/org/devshare/designing-birt-reports/276-birt-chart-scripting-dynamic-markers-and-datapoint-colors/
Now I have to find a way to add on click events to certain data points...

Resources