Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

BUG? - Status Meter Gauge

Sanel Konakovic-OracleJun 12 2024 — edited Jun 12 2024

Hi,

I'm having issues to properly render gauge. I copied default meter gauge and added my own code. I think we tried everything. Is there any way to push the reference line to the value of ‘COVERAGE’. When I set it manually to any value, it renders properly. The threshold takes the ‘COVERAGE’ value properly but the reference line does not.

APEX v21.2.0

Reference line hard set to = 0.75:

Reference line set to ‘COVERAGE’:

Region Attributes:

Series settings:

SQL:
select
sum(ECL_KOREKCE)/sum(ON_CZK_BALANCE_BRUTTO) as coverage,
1 as max
from owner.TABLE
where
rdm_bus_date IN (SELECT MAX(column_value) FROM table(apex_string.split(:P276_SELECTED_TOTAL,':')))
and
pl_npl = 'Nevýkonné'
group by rdm_bus_date

Comments
Post Details
Added on Jun 12 2024
4 comments
300 views