Uses of Interface
org.apache.poi.ss.usermodel.charts.ChartAxis

Packages that use ChartAxis
org.apache.poi.ss.usermodel   
org.apache.poi.ss.usermodel.charts   
org.apache.poi.xssf.usermodel   
org.apache.poi.xssf.usermodel.charts   
 

Uses of ChartAxis in org.apache.poi.ss.usermodel
 

Methods in org.apache.poi.ss.usermodel that return types with arguments of type ChartAxis
 java.util.List<? extends ChartAxis> Chart.getAxis()
           
 

Methods in org.apache.poi.ss.usermodel with parameters of type ChartAxis
 void Chart.plot(ChartData data, ChartAxis... axis)
          Plots specified data on the chart.
 

Uses of ChartAxis in org.apache.poi.ss.usermodel.charts
 

Subinterfaces of ChartAxis in org.apache.poi.ss.usermodel.charts
 interface ValueAxis
           
 

Methods in org.apache.poi.ss.usermodel.charts that return ChartAxis
 ChartAxis ChartAxisFactory.createCategoryAxis(AxisPosition pos)
           
 ChartAxis ChartAxisFactory.createDateAxis(AxisPosition pos)
           
 

Methods in org.apache.poi.ss.usermodel.charts with parameters of type ChartAxis
 void ChartAxis.crossAxis(ChartAxis axis)
          Declare this axis cross another axis.
 void ChartData.fillChart(Chart chart, ChartAxis... axis)
          Fills a charts with data specified by implementation.
 

Uses of ChartAxis in org.apache.poi.xssf.usermodel
 

Methods in org.apache.poi.xssf.usermodel with parameters of type ChartAxis
 void XSSFChart.plot(ChartData data, ChartAxis... chartAxis)
           
 

Uses of ChartAxis in org.apache.poi.xssf.usermodel.charts
 

Classes in org.apache.poi.xssf.usermodel.charts that implement ChartAxis
 class XSSFCategoryAxis
          Category axis type.
 class XSSFChartAxis
          Base class for all axis types.
 class XSSFDateAxis
          Date axis type.
 class XSSFValueAxis
          Value axis type.
 

Methods in org.apache.poi.xssf.usermodel.charts with parameters of type ChartAxis
 void XSSFValueAxis.crossAxis(ChartAxis axis)
           
 void XSSFCategoryAxis.crossAxis(ChartAxis axis)
           
 void XSSFDateAxis.crossAxis(ChartAxis axis)
           
 void XSSFScatterChartData.fillChart(Chart chart, ChartAxis... axis)
           
 void XSSFLineChartData.fillChart(Chart chart, ChartAxis... axis)
           
 



Copyright 2017 The Apache Software Foundation or its licensors, as applicable.