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: ...@@ -155,7 +155,7 @@ At the moment of writing, the following patterns are supported:
### Simple Bar Charts (no categories): ### Simple Bar Charts (no categories):
#### Vertical #### Vertical
`CsvParser.parse(CsvType.X_ALIGNED, CsvOrientation.VERTICAL) -> PointListContainer<PointList>` `--vertical-csv --diagram-type BarChart`
|Column 1|Column 2| |Column 1|Column 2|
|---|---| |---|---|
...@@ -170,7 +170,7 @@ At the moment of writing, the following patterns are supported: ...@@ -170,7 +170,7 @@ At the moment of writing, the following patterns are supported:
### Categorical Bar Charts ### Categorical Bar Charts
#### Vertical #### Vertical
`CsvParser.parse(CsvType.X_ALIGNED_CATEGORIES, CsvOrientation.VERTICAL) -> CategoricalPointListContainer<PointList>` `--diagram-type BarChart`
|Column 1|Column 2|Column 3|...|Column n| |Column 1|Column 2|Column 3|...|Column n|
|---|---|---|---|---| |---|---|---|---|---|
...@@ -185,7 +185,7 @@ At the moment of writing, the following patterns are supported: ...@@ -185,7 +185,7 @@ At the moment of writing, the following patterns are supported:
### Scatter and Line Plots ### Scatter and Line Plots
#### Horizontal #### Horizontal
`CsvParser.parse(CsvType.DOTS, CsvOrientation.HORIZONTAL) -> PointListContainer<PointList>` `--diagram-type ScatterPlot` or `--diagram-type LineChart`
|Column 1|Column 2|Column 3|...|Column n| |Column 1|Column 2|Column 3|...|Column n|
|---|---|---|---|---| |---|---|---|---|---|
... ...
......