MKS
MKS

Reputation: 59

Baseline deviation graph in Oracle APEX5.0

In Oracle APEX 5.0 , I want to create a baseline deviation graph where in it should display the graph in below format. enter image description here

Given X axis is the date column and Y axis is the column with numeric value , I should be able to highlight the least value through a line ( as you can see in above graph the line marked in red is a baseline value ) in addition to the linear display on chart.So far I tried using "D3 Line chart" plugin but seems its not displaying the chart in expected format.

Could you please suggest if its possible to create such a chart? What plugin is required for that?

Upvotes: 0

Views: 152

Answers (1)

Bahadirs
Bahadirs

Reputation: 188

i think you dont need a plugin

you can achieve this need by using a chart sample with multiple series and you can give your secondary serie with a fixed baseline value like

SELECT link, label, series_1_value [, series_2_value [, ...]] FROM ...

SELECT link, label, series_1_value , 2 FROM ...

Upvotes: 0

Related Questions