Focal Point
[CLOSED] Dashboard with Numbers

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/8787086986

March 19, 2018, 03:47 PM
Gagan Marwah
[CLOSED] Dashboard with Numbers
Hello,

I am working on creating a dashboard that will show open vs. closed Tickets, Changes etc. I do not want to create charts for this dashboard because overtime closed items will be more than open items. Therefore, I would like to have numbers for each category...

Also, I want those numbers to be drill down.

Can someone help me or point me to the right direction?

Thanks,
Gagan

This message has been edited. Last edited by: FP Mod Chuck,


WebFOCUS 8
Windows, All Outputs
March 19, 2018, 04:33 PM
Francis Mariani
You are asking about the absolute basic reason why WebFOCUS exists - a tabular report.

TABLE FILE CAR
SUM
WIDTH
HEIGHT
WEIGHT
BY COUNTRY
END



Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
March 19, 2018, 05:23 PM
jcannavo
For information on how to create drill downs just search the tech support center technical content for "drill down" and you should find all sorts of documents to help with that piece.


JC
WebFOCUS Dev Studio / App Studio
8.2.01
Windows 7
March 20, 2018, 11:39 AM
Gagan Marwah
I know how to create reports and drill downs. I am more interested in knowing if someone has done any modern looking Dashboards.

One of the capabilities I am looking for:

Hover effect - change text color when hovering over number/text. I don't like the text underline when you hyperlink a drill down to text or number in a report..


WebFOCUS 8
Windows, All Outputs
March 20, 2018, 11:52 AM
Francis Mariani
quote:
modern looking Dashboards

Sorry, but not something you mentioned in your original post.

This can easily be acheived with CSS.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
March 20, 2018, 02:46 PM
Gagan Marwah
Would you be able to provide an example how to correctly add internal css in text editor and reference it?

Here is my css:

 <style>
.color:hover {
	color: green
}
</style> 



Here is the code from text editor:

TABLE FILE CHANGE
SUM
OpenChanges AS 'Open,'
ClosedChanges AS 'Closed,'
ON TABLE SUBHEAD
"Changes"
ON TABLE SET HTMLENCODE ON
ON TABLE SET EMPTYREPORT ON
ON TABLE SET GRWIDTH 1
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET CACHELINES 100
ON TABLE SET HTMLEMBEDIMG ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = IBFS:/FILE/IBI_HTML_DIR/javaassist/intl/EN/ENIADefault_combine.sty,
$
SUMMARY='&WF_SUMMARY',
TITLETEXT='&WF_TITLE',
$
TYPE=DATA,
COLUMN=N2,
SIZE=48,
COLOR=RGB(66 70 73),
JUSTIFY=CENTER,
FOCEXEC=Changes_Open_vs._Closed.fex,
TARGET='_blank',
$
TYPE=DATA,
COLUMN=N1,
SIZE=48,
COLOR=RGB(66 70 73),
CLASS=color,
BACKCOLOR='WHITE',
JUSTIFY=CENTER,
FOCEXEC=Changes_Open_vs._Closed.fex,
TARGET='_blank',
$
TYPE=TITLE,
COLUMN=N2,
FONT='CALIBRI',
SIZE=18,
COLOR=RGB(109 158 231),
BACKCOLOR='WHITE',
STYLE=BOLD,
JUSTIFY=CENTER,
$
TYPE=TITLE,
COLUMN=N1,
FONT='CALIBRI',
SIZE=18,
COLOR=RGB(110 158 231),
BACKCOLOR='WHITE',
STYLE=BOLD,
JUSTIFY=CENTER,
$
TYPE=TABHEADING,
LINE=1,
OBJECT=TEXT,
ITEM=1,
FONT='CALIBRI',
SIZE=24,
STYLE=BOLD,
$
ENDSTYLE
END


WebFOCUS 8
Windows, All Outputs
March 20, 2018, 02:54 PM
Francis Mariani
Create a css file and place it in one of the approot folders on the web server.

Use the command
SET CSSURL /approot/folder/file.css
to point to the file.

Documentation: WebFOCUS Release 8.1 Version 05M > Reporting Language > Creating Reports With WebFOCUS Language > Using an External Cascading Style Sheet


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server