Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Permanently Hiding Side Panels

Summary
Permanently Hiding Side Panels
Content
Hello all,
I am doing some work on Data Visualiser V4 and I was wondering whether it is possible to "hide" the side panels (i.e. Data Panel, and Viz Grammar Panel) permanently so that a non-developer user can't see them, or access them.
I know about the "Toggle Panel Visibility" option in the bottom right hand corner of the window, but would really like to be able to remove the option of the Data and Viz Grammar Panel entirely.
Thank you.
Answers
-
There is not really the concept of "developer" | "non-developer" in Data Visualization Desktop. It is a tool for individual data explorers.
Data Visualization (/va) on the on-premise install or Oracle Analytics Cloud is more curated for user control.
If it helps, you can export to a variety of outputs for a "non-developer"DVD FAQ: What File Formats Are Available In Data Visualization Desktop 12.2.4 (DV4)?(Doc ID 2324821.1)
Others may have different thoughts.
0 -
Thanks, I ended up creating a skin that essentially removes the usability of the data panels - but this is good to know for future reference.
0 -
can you share how you created the skin and removed functionality of the side panels?
0 -
Hello there,
I downloaded the Customizable Skin plugin from https://www.oracle.com/solutions/business-analytics/data-visualization/library.html
The .css file that you want to edit is the editedreportstyles.css file.
To remove the functionality of the side panels (although it's not the prettiest way of doing things without some extra tweaking of the .css files) I used a "display: none !important" command in the .css where the data panels are rendered. There is a large number of things that need to be "un-displayed" to completely get rid of the data panels but as an example:
.bi_gadgetdialog_innerTabsContainer .oj-tabs{
height:100%;
overflow:auto;
display: none !important;
}
It's straightforward to figure out which elements need to have the "display: none !important" aspect using the SDK tool; https://docs.oracle.com/middleware/bidv1221/desktop/BIDVD/GUID-C1E2DEEC-999F-48EB-86E9-D9DB3A5FB7C9.htm#BIDVD-GUID-C1E2D…
you can then use f12 and inspect the areas on the tool to have a play with changing the skin and finding which .css you need to edit.
Feel free to reply with any questions!
0