Can I change y-axis scale on timelion charts? If so, how can I accomplish that?
I'm interested in only changing scale of my y-axis, I don't want to modify values of my series.
In any other visualisations I have that "Y-Axis Scale" option which I can set to "square root" receiving desired effect. But no matter what I'm unable to do the same for timelion charts. The effect you can see on the image below.
I'm using Kibana 5.1.2.
Looks like Kibana 5.4 release will have logarithmic timelion y-axis
https://discuss.elastic.co/t/logarithmic-scale-for-kibana-timeli-y-axis/81942
Related
I would like to know how to set the axis range and achieve the same behavior that Google Image Charts had. Here is the example for the same request URL:
I.e., I have an y value on each 100th of x axis. Is there a way to easily define a dataset 'step' for Image Charts, or I have to create custom labels on x axis with chxl, which I would like to avoid?
Image-Charts founder here :)
Indeed, regarding axis range our documentation is (I hope) explicit:
In Google Image Charts specifying the chxr parameter changed the scale of the axis but not the dataset scale. In Image-Charts — because we think it's was the biggest usage issue with Google Image Charts — changing the axis scale through chxr also impact the whole dataset scale.
You must make an axis visible using the chxt parameter if you want to specify its range.
You will have to use axis range (chxr) to better specify what you want and the steps needed:
chxr=
<axis_index>,<start_val>,<end_val>,<opt_step>
|...|
<axis_index>,<start_val>,<end_val>,<opt_step>
I've been working on putting together a broken y-axis histogram, in order to display one very tall bar while not having the other bars invisible. In particular, I would like to be able to control not only what the tics are on the x-axis (they need to show the count bins from the histogram, not just the axes), but also how many tics there are on the x-axis.
This question got me started, though I had to figure out on my own how to use the xtics option in plotrix's gap.barplot to show the histogram bins:
Put a break in the Y-Axis of a histogram
However, I still cannot figure out a way to plot a broken y-axis histogram without having it try to plot a tic for every single bin. Does anybody know a way to do this?
I'm new to Pentaho, and I have a small problem I cannot seem find an answer to. I'm running stock Pentaho 5.0.1 stable Report Designer. I have a bar chart that I have setup with a data source, everything there is showing/working correctly. I have changed the bar chart to a stacked percentage, and it stacks as expected. The problem is the values of the chart show from 0.0 to 1.0 incrementing by 0.1. Aesthetically I'd prefer this range from 0% - 100%, but don't see a way to change how it displays.
I see some solutions related to CCC/CGG, but I'm not running any plugins. This is just a out of the box Bar Chart. Playing around with y-axis settings does change the scaling/min/max values but none of that changes the visual display of the chart from the calculated range of 0-1 to is percentage counter part.
Thanks,
On the chart properties, go to Y-Axis and change the property y-tick-fmt-str (stands for Y ticks format string) to 0.0%.
Hi I am using GNU Octave, version 3.2.4.
While using plot or stem axis values are not shown in the figure window.
I am using GNUPLOT Version 4.4. When I plot something separately in gnuplot, it gives no error. For example in gnuplot:
set xrange [1:100];plot(x);
The above shows a plot with values on both axes, but the same isn't working in octave:
x=[1:100];plot(x);
This results on a figure window without any axis values.
I have tried all axis property options available in octave. Auto scaling works but values are still not displaying. Can anyone suggests how to correct this issue?
I am using Google Chart Image to make graphical chart. I am using PHP to provide the data to the link which in return gives me desired chart. The x-axis and y-axis values are also dynamic i.e. if the graph data is 23,45,37,29... then the y-axis value will range from 20 to 50 and if it is more then that then it will scale according to the data..
Now the problem I am not able to solve is that the dynamic values work fine but I am not able to move the graph line. The image below will clear this point:
Click here for the graph image.
The data provided to this graph is = 190.12,185.53,186.22,186.71,185.87,185.57,186.50,186.58,190.71,191.41,190.12185
The data range is approx between 180 to 190 but graph drawn is between 198 and 200.
I have used chxr to scale the axis. and the link which I am dynamically updating through php is:
THIS
I believe the problem you've got is that you're scaling the axis labels, but not the axis itself. You want to change the chds parameter from a to the range you're dealing with.
This chart looks okay to me.