Hi,
Is it possible to flip the Y axis on a Line FacetChart, so that the negative values appear on the top, and 0 appears on the bottom?
This is my current code:
	
  
		
							
						
					Is it possible to flip the Y axis on a Line FacetChart, so that the negative values appear on the top, and 0 appears on the bottom?
This is my current code:
Code:
	
	 historyChart.setDataSource(DataSource.get("ChipSTA_ChipSummary"));
  historyChart.setFetchOperationId("fetchHistory");
  Facet dateFacet = new Facet("Name", "Run Name");
   
  historyChart.setFacets(dateFacet, new Facet("CheckType", "Check"));
  historyChart.setValueProperty("WNS");
  historyChart.setChartType(ChartType.LINE);
  historyChart.setTitle("# of Failing Paths");
  historyChart.setStacked(false);
  historyChart.setHeight100();
  historyChart.setLabelCollapseMode(LabelCollapseMode.SAMPLE);
  historyChart.setCanZoom(setZoom);
  if (setZoom) {
  historyChart.setZoomStartPosition(ZoomStartPosition.END);
  }
  historyChart.setLogScale(setLog);
  if (setLog) {
  historyChart.setUseLogGradations(true);
  historyChart.setLogGradations(1,5);
  }
Comment