I am adding a xyChart indicator to a finance chart, however the xAxis does not match the main finance chart xAxis data. One is a date and the other is a numeric count.
c.getPlotArea().setBackground(Chart.goldColor, Chart.goldColor, -1)
c.addBarLayer3(AmpData, yBarColors).setBorderColor(Chart.Transparent)
c.xAxis().setLabels(xLabelsALL)
AmpData and yBarColors are numeric arrays
xLabelsALL is a string array
Can I do this if so how ??
|