Add required cli parameters for different csv types authored by Georg Graßnick's avatar Georg Graßnick
......@@ -155,7 +155,7 @@ At the moment of writing, the following patterns are supported:
### Simple Bar Charts (no categories):
#### Vertical
`CsvParser.parse(CsvType.X_ALIGNED, CsvOrientation.VERTICAL) -> PointListContainer<PointList>`
`--vertical-csv --diagram-type BarChart`
|Column 1|Column 2|
|---|---|
......@@ -170,7 +170,7 @@ At the moment of writing, the following patterns are supported:
### Categorical Bar Charts
#### Vertical
`CsvParser.parse(CsvType.X_ALIGNED_CATEGORIES, CsvOrientation.VERTICAL) -> CategoricalPointListContainer<PointList>`
`--diagram-type BarChart`
|Column 1|Column 2|Column 3|...|Column n|
|---|---|---|---|---|
......@@ -185,7 +185,7 @@ At the moment of writing, the following patterns are supported:
### Scatter and Line Plots
#### Horizontal
`CsvParser.parse(CsvType.DOTS, CsvOrientation.HORIZONTAL) -> PointListContainer<PointList>`
`--diagram-type ScatterPlot` or `--diagram-type LineChart`
|Column 1|Column 2|Column 3|...|Column n|
|---|---|---|---|---|
......
......