Hi
I'm trying to design a chart application that will allow me to draw both volume data and stock prices in the same chart as two seperate areas.
here is exactly what I'm trying to do:
zoomed in version
is it possible to do such a think? if yes, please tell me what type of chart I should use and also if there are any examples, show them to me
Thanks a lot in advance for your help
candle chart (http://help.infragistics.com/Help/NetAdvantage/WinForms/2009.2/CLR2.0/html/Chart_Candle_Chart.html) is designed to show both OHLC and volume data on the same chart. it is also possible to create this chart as a composite chart containing a line chart layer and a column chart layer.
Thanks David for your reply, but candle charts draw both bars and line charts at the same axes (X and Y) while on the example that I have above, they are separated axes. one set of axes for volums data, and another for line data.
what I'm thinking about is, having two areas, one for volums and the other for line
is there a better idea on how to do this?
the volume columns in Candle Chart actually use the Y2 axis (the axis on the right side), which has a different range from the Y axis used by the candles.
for the other approach, create a CompositeChart with two ChartAreas.