This is only occuring on my charts that have a combined domain.
Also, this is also occuring on the combined domain demo provided with the developer guide.
Search found 7 matches
- Wed Jun 08, 2005 6:52 pm
- Forum: JFreeChart
- Topic: Zooming on Left side of chart
- Replies: 1
- Views: 2252
- Tue Jun 07, 2005 2:14 pm
- Forum: JFreeChart
- Topic: Zooming on Left side of chart
- Replies: 1
- Views: 2252
Zooming on Left side of chart
In RC1 I'm finding it very difficult to zoom on the extreme left hand side of the plot. The first point of the zoom box must be on the chart which makes it nearly impossible to get the data thats right on the left hand edge. Does any one have a way to create a gap or fix this problem?
- Fri Jun 03, 2005 5:47 pm
- Forum: JFreeChart
- Topic: JFreeChart 1.0.0-rc1 available...
- Replies: 21
- Views: 26812
Symbolic Fix
You now need to create and set a SymbolicTickUnit.
Code: Select all
SymbolicAxis axis = new SymbolicAxis("Hole Cards", dataset.getXSymbolicValues());
SymbolicTickUnit stu = new SymbolicTickUnit(1,dataset.getXSymbolicValues());
axis.setTickUnit(stu);
- Fri Jun 03, 2005 4:37 pm
- Forum: JFreeChart
- Topic: JFreeChart 1.0.0-rc1 available...
- Replies: 21
- Views: 26812
Symbolic Values not being displayed on axis
After upgrading, my symbolics are no longer displayed on the axis. They are being displayed correctly in my tooltips.
- Fri Apr 22, 2005 5:34 pm
- Forum: JFreeChart
- Topic: How to create dataset for candleStick chart???
- Replies: 1
- Views: 3100
Here is a snippet. ArrayList<OHLCDataItem> dataPoints = new ArrayList<OHLCDataItem>(); // in some loop dataPoints.add(new OHLCDataItem(currDate, open, high, low, close, volume)); // exit loop OHLCDataItem[] a = new OHLCDataItem[1]; DefaultOHLCDataset ohlcDataSet_ = new DefaultOHLCDataset("", dataPoi...
- Tue Apr 19, 2005 3:37 am
- Forum: JFreeChart
- Topic: Volume Values / Axis on a Candlestick Chart
- Replies: 1
- Views: 1932
Volume Values / Axis on a Candlestick Chart
Is there any way to display a volume axis on a candlestick chart?
- Wed Apr 13, 2005 2:36 pm
- Forum: JFreeChart
- Topic: Volume Axis Display
- Replies: 0
- Views: 1667
Volume Axis Display
Hi all,
I'm very new to JFreeChart and still testing the waters. I'm trying to create a candleStickChart and the chart is being created fine, but I can't figure out how to display a volume axis on the right side of the chart. Also, how would I change the scale for the volume?
Thanks
I'm very new to JFreeChart and still testing the waters. I'm trying to create a candleStickChart and the chart is being created fine, but I can't figure out how to display a volume axis on the right side of the chart. Also, how would I change the scale for the volume?
Thanks