Good Afternoon-
I am now at my wits end regarding implementing a Sparkline solution into my APEX application. Here is where I stand:
- Using APEX version 4.0.2
- Downloaded the Enkitec Sparklines Plug-In
- Followed the DEMO found on their webpage using the embedded <span> tags within the HTML which calls that class id from a Dynamic Action that was set up
SQL>
SELECT 'Intake (Calls Received)' METRIC
,7684 AS MTD
,-0.17 AS MoMVAR
,46258 AS YTD
,-0.09 AS YOYVAR
,'<span class="intake-calls">' ||
1 || ',' ||
2 || ',' ||
4 || ',' ||
6 || ',' ||
3 || ',' ||
1 ||
'</span>' AS intake_calls
FROM DUAL
Dynamic Action>
Event: After Refresh (on region above)
Action: Enkitec Sparklines [Plug-in]
Fire On Page Load: Yes
Selection Type: jQuery Selector
Affected elements: .intake-calls
*****Result: Only the html text is being displayed.****
I am missing something, obviously. My main questions are:
- Do I need to additionally install a JQuery Sparklines java file into my application? I was looking at the one found on: jQuery Sparklines
- If #1 is needed for all this to work, does anyone have any resources that could guide me through such a process?
Thank you for your time reading this.