Dear Oracle Apex Experts,
I am using oracle apex charts in one of the dashboard application.
when no data found then charts display message "No data to display" as in Image1, but I would like to replace this message with my own customized text as mention below Image2.
Can any one help on how to replace "No data to display" with the text as mentioned below.
Image1.

image 2

my progress: I have set the Static ID on the chart to p11_lines1
I Created an after-refresh dynamic action on the chart, using the following 'JavaScript Expression' as the client side condition.
$('#p11_lines1').text().includes('No data to display')
I then used the following in a JavaScript action to replace the content
$('#p11_lines1').html(' <center>No data to display</center><br><br><center>Please select an EOR system using the popup LOV on the upper left corner!</center>')
But when it is time to load the chart with lines, the chart retains the customized text, the lines don't show up.
please help! I don't know how to load the lines in chart back, any ideas how? thank you in advance.