Flex staked Y-Axis - apache-flex

I'm trying to make chart which is combination of bar and line chart using Flex Charting API .
Here x axis would be common and y axis would be different. Please not that y axis got different range of value one is % and other is amount. Any one got idea how to make this chart. Here line chart would be staked on top of bar chart . The line chart and never over laid or drawn on top of bar chart. Please help... please..
Thanks ,
James

Start from the CartesianChart. Add LineSeries and BarSeries (or maybe you mean ColumnSeries).
This example is close:
http://livedocs.adobe.com/flex/3/html/help.html?content=charts_types_12.html
--edit
For the chart stacking dilemma: let the charts be separate with their own axes. Just hide the horizontal axis from the top chart.

Related

Too much data on the XAxis to show all the bars Stacked Bar Chart JavaFx

I would like to display a Stacked Bar Chart in JavaFx, but the range of the Data is [0-256], so when I display the Chart, all the bars are not displayed.
I split the Chart with 3 parts parts :
I wonder if there is a better solution to display in one Chart all the data.

Is there a way to plot multiple plot types (i.e., bar chart and adjacent strip chart) on the same plot?

I'd like to display a bar plot with an adjacent series of strip charts, both with different y-axes, on the same overall plot. Can someone please suggest a way to to do this if possible?
The goal is to use a bar plot to show fold-change for qPCR, and then in the same figure show the individual dCt values for control and treatment groups that were used to generate the fold-change. The bar plot and strip chart need different y-axes.
Thank you for your help.

Spacing Between Multiple X-Axes in JFreeChart

I'm attempting to try and increase the vertical spacing between multiple x-axes using JFreeChart. Currently, my charts look like this:
Current chart
However, I need to produce something like the following so that the x-axes are more clearly defined (note that the vertical spacing between the x-axes is larger than in the first image):
Desired chart
Does any one have any idea on how to do this? I've been searching the JFreeChart API for > 2 days now and can't find anything that directly addresses the issue other than attempting to use org.jfree.chart.axis.AxisSpace in some way.
Many thanks for any help!
One approach would be to customise the axis label insets (that is, increase the space below each axis label).
http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/axis/Axis.html#setLabelInsets-org.jfree.ui.RectangleInsets-

How to add titles below the bars in Bar CHart created from Core Plot?

Hi I need to show the String titles below the bars of my Bar Chart created from Core Plot. I have many places in Core Plot framework but didn't find how to put text below the bars?
I need to show titles just like shown in the attached image.
Please suggest!
There are a couple of ways to make axis labels that are not numeric representations of the data value.
If you are plotting categorical data, you can set the scale type of the plot space to show categorical labels and return the text of the label from the datasource for the plot value (e.g., the bar location for a bar plot).
From the "Vertical Bar Chart" demo in the Plot Gallery example app:
// setup
[barPlotSpace setScaleType:CPTScaleTypeCategory forCoordinate:CPTCoordinateX];
If you're not plotting categorical data or you just need more control over the labels, you can create custom axis labels. Set the axis labelingPolicy to CPTAxisLabelingPolicyNone, create a set of axis labels, and assign it to the axisLabels property. There are several demos in the example apps including the "Composite Plot" demo in the Plot Gallery example app. With CPTAxisLabelingPolicyNone, the tick marks and labels are independent, so if you want tick marks, you also need to set the majorTickLocations and/or minorTickLocations.

ASP.NET charts trend line

I have basic bar charts showing some value (1 value per chart) on each day. The charts are rendered using standard MS ASP.NET charts.
Now I would like to add a trend line. Has somebody done such thing and would be so kind to give me some hints how to approach this task? I know how to add a line to the chart, just would like to know whether someone already did such thing.
If I have understood the question correctly, you want to show a line graph using the same values that each bar is drawn.
You can do this by adding one more series with chart type as line to the same chart area.
Make the Y-axis for the series as secondary and keep X-axis as primary (to keep same X-axis values for both Bar & line graph). Or you can also make X-Axis of this new series as Secondary (this will show labels on top of chart area) .

Resources