dc.js barchart x-axis using an aggregated dimension - dc.js

In the NASDAQ 100 example, is it possible to plot months by fluctuation? That is, calculate a fluctuation rate by month and use it as the dimension or X-axis in the bar chart?

Related

How to make a scatter plot not show all values instead of the top values only?

I have a scatter plot with a timestamp (aggregated by minute) for the X axis and a numerical measure for the Y axis.
The plot that I get shows only some of the values, with the text below the visual name saying "showing top 50 in [X] and top 43 in [Y]".
How do I make the scatter plot show all values?

How can we show min and max values for candlestick charts using nvd3?

How can we show min and max values for candlestick charts using nvd3

Kendo Chart plot lines

I have a Kendo UI scatter plot representing trade volumes over a time series. The chart works well, but now I need to add a vertical plot line on the x-axis (time) at a specific time, representing a price-fluctuation point. Is it possible to draw such lines at a specific x-axis value, along with a label or tooltip explaining the data details? I see plot bands, but that seems not useful here.
Thanks in advance for any hints/suggestions.
I could add a new line series with points at (time, 0) and (time, y), but I would like to see if there is a better/API way before I go that route.

SpagoBI charts: X axis values overlap when lot of values

I'm using SpagoBI to draw charts from values stored in a Database.
If there are a few values, chart is showing properly, but if I have a lot of values the X axis legend overlaps.
Example:
Few values
Lot of values
I want to know if is possible to define the number of values shown at the X axis keeping all the data in the chart.
For example: If I have 10 hours just show 0:00 1:00 2:00 .... 10:00 instead of all data in the X axis, keeping all the points in the chart.
Thanks

Reversing x domain on dc.js series chart

Looking at this sample dc.js series chart:
How do I reverse the x-axis so it descends from 20 to 0, with the plotted series reversing accordingly?
I was able to do this in a pure d3.js chart by reversing the order of x.domain. When I try to do this for the chart above by changing:
.x(d3.scale.linear().domain([0,20]))
to
.x(d3.scale.linear().domain([20,0]))
The numbers on the x-axis reverse, but the lines disappear.
This looks like a bug, specifically this one:
https://github.com/dc-js/dc.js/issues/525

Resources