Skip to content

Commit

Permalink
LRDOCS-7647 Updated javadocs links in all chart pages
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidOMontenegro committed Dec 19, 2023
1 parent 77d7bd6 commit f2c8545
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ header-id: bar-charts
Bar charts contain multiple sets of data. A bar chart models the data in bars.
Each data series (created with the `addColumns()` method) is defined with a new
instance of the
[`MultiValueColumn` object](@app-ref@/foundation/latest/javadocs/com/liferay/frontend/taglib/chart/model/MultiValueColumn.html),
[`MultiValueColumn` object](https://docs.liferay.com/portal/7.2-latest/apps/frontend-taglib-2.0.2/javadocs/com/liferay/frontend/taglib/chart/model/MultiValueColumn.html),
which takes an ID and a set of values. Follow these steps to configure your
portlet to use bar charts.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ header-id: line-charts
Line charts contain multiple sets of data. A Line chart displays the data
linearly. Each data series (created with the `addColumns()` method) is defined
with a new instance of the
[`MultiValueColumn` object](@app-ref@/foundation/latest/javadocs/com/liferay/frontend/taglib/chart/model/MultiValueColumn.html),
[`MultiValueColumn` object](https://docs.liferay.com/portal/7.2-latest/apps/frontend-taglib-2.0.2/javadocs/com/liferay/frontend/taglib/chart/model/MultiValueColumn.html),
which takes an ID and a set of values. Follow these steps to configure your
portlet to use line charts.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ header-id: scatter-charts
Scatter charts contain multiple sets of data. A scatter chart models the data as
individual points. Each data series (created with the `addColumns()` method) is
defined with a new instance of the
[`MultiValueColumn` object](@app-ref@/foundation/latest/javadocs/com/liferay/frontend/taglib/chart/model/MultiValueColumn.html),
[`MultiValueColumn` object](https://docs.liferay.com/portal/7.2-latest/apps/frontend-taglib-2.0.2/javadocs/com/liferay/frontend/taglib/chart/model/MultiValueColumn.html),
which takes an ID and a set of values. Follow these steps to configure your
portlet to use scatter charts.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ header-id: spline-charts
Spline charts contain multiple sets of data. A spline chart connects points of
data with a smooth curve. Each data series
(created with the `addColumns()` method) is defined with a new instance of the
[`MultiValueColumn` object](@app-ref@/foundation/latest/javadocs/com/liferay/frontend/taglib/chart/model/MultiValueColumn.html),
[`MultiValueColumn` object](https://docs.liferay.com/portal/7.2-latest/apps/frontend-taglib-2.0.2/javadocs/com/liferay/frontend/taglib/chart/model/MultiValueColumn.html),
which takes an ID and a set of values. Follow these steps to configure your
portlet to use spline charts.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ header-id: step-charts
Step charts contain multiple sets of data. A step chart steps between the points
of data, resembling steps. Each data series
(created with the `addColumns()` method) is defined with a new instance of the
[`MultiValueColumn` object](@app-ref@/foundation/latest/javadocs/com/liferay/frontend/taglib/chart/model/MultiValueColumn.html),
[`MultiValueColumn` object](https://docs.liferay.com/portal/7.2-latest/apps/frontend-taglib-2.0.2/javadocs/com/liferay/frontend/taglib/chart/model/MultiValueColumn.html),
which takes an ID and a set of values. Follow these steps to configure your
portlet to use step charts.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Combination charts have minor differences from other charts. In a combination
chart, you must define the representation type of each data set: `AREA`,
`AREA_SPLINE`, `AREA_STEP`, `BAR`, `BUBBLE`, `DONUT`, `GAUGE`, `LINE`, `PIE`,
`SCATTER`, `SPLINE`, or `STEP`. Each data set in a combination chart is an
instance of the `TypedMultiValueColumn` object. Each object receives an ID, the
instance of the [`TypedMultiValueColumn` object](https://docs.liferay.com/portal/7.2-latest/apps/frontend-taglib-2.0.2/javadocs/com/liferay/frontend/taglib/chart/model/TypedMultiValueColumn.html). Each object receives an ID, the
representation type, and values for the data. Follow these steps to configure
your portlet to use combination charts.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ header-id: donut-charts
Donut charts are percentage-based. A donut chart is similar to a pie chart, but
it has a hole in the center. Each data set must be defined as a new instance of
the
[`SingleValueColumn` object](@app-ref@/foundation/latest/javadocs/com/liferay/frontend/taglib/chart/model/SingleValueColumn.html).
[`SingleValueColumn` object](https://docs.liferay.com/portal/7.2-latest/apps/frontend-taglib-2.0.2/javadocs/com/liferay/frontend/taglib/chart/model/SingleValueColumn.html).
Follow these steps to configure your portlet to use donut charts.

1. Import the chart taglib along with the `DonutChartConfig` and
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ header-id: gauge-charts
Gauge charts are percentage-based. A gauge chart shows where percentage-based
data falls over a given range. Each data set must be defined as a new instance
of the
[`SingleValueColumn` object](@app-ref@/foundation/latest/javadocs/com/liferay/frontend/taglib/chart/model/SingleValueColumn.html).
[`SingleValueColumn` object](https://docs.liferay.com/portal/7.2-latest/apps/frontend-taglib-2.0.2/javadocs/com/liferay/frontend/taglib/chart/model/SingleValueColumn.html).
Follow these steps to configure your portlet to use gauge charts.

1. Import the chart taglib along with the `GaugeChartConfig` and
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ header-id: pie-charts

Pie charts are percentage-based. A pie chart models percentage-based data as
individual slices of pie. Each data set must be defined as a new instance of the
[`SingleValueColumn` object](@app-ref@/foundation/latest/javadocs/com/liferay/frontend/taglib/chart/model/SingleValueColumn.html).
[`SingleValueColumn` object](https://docs.liferay.com/portal/7.2-latest/apps/frontend-taglib-2.0.2/javadocs/com/liferay/frontend/taglib/chart/model/SingleValueColumn.html).
Follow these steps to configure your portlet to use pie charts.

1. Import the chart taglib along with the `PieChartConfig` and
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Follow these steps to use predictive charts.
```
2. Add the following Java scriptlet to the top of your `view.jsp`. Add a
[`MixedDataColumn` object](@app-ref@/foundation/latest/javadocs/com/liferay/frontend/taglib/chart/model/MixedDataColumn.html)
[`MixedDataColumn` object](https://docs.liferay.com/portal/7.2-latest/apps/frontend-taglib-2.0.2/javadocs/com/liferay/frontend/taglib/chart/model/MixedDataColumn.html)
---a column that supports both single number values and arrays of three
numbers---for each data series. Single number values define existing data.
Arrays of numbers are used as the prediction/forecast data and contain three
Expand Down

0 comments on commit f2c8545

Please sign in to comment.