Skip to content

Commit

Permalink
fix minor bug in chart tooltips and update libs
Browse files Browse the repository at this point in the history
  • Loading branch information
RonnyWeiss committed Jul 18, 2023
1 parent 079bf37 commit 4b02763
Show file tree
Hide file tree
Showing 17 changed files with 38,849 additions and 60,075 deletions.
2 changes: 1 addition & 1 deletion apexplugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "APEX Material BI Dashboard",
"version": "22.12.06",
"version": "23.07.18",
"description": "This plug-in allows to integrate a freely configurable dashboard into Oracle APEX.<p>It offers many display options, e.g. charts, lists, KPI cards, world map, tables, HTML, analog clock, calendar and much more. Each dashboard item can be customized, even at runtime without page submit!</p><p>The main advantage of the dashboard is that end-users of your APEX app can configure one or more dashboards at runtime without having to touch the region or page by a developer! This was not possible in APEX so far! Of course, the dashboard can also be used as a fixed region.</p><p>The plug-in requires an APEX 5.1.3 or newer and an Oracle 12c or newer. The Sample App requires an APEX 20.2 or newer. However, you can quickly install it in a free workspace on apex.oracle.com and then get started right away with the help of the Sample App!</p><p>The item dialog in the Sample App is just a very simplified example, of course in your application the respective data source (table, view, function...) and many setting options for the respective dashboard item can be offered there.</p><p>You can find a tutorial at<p>https:\/\/www.youtube.com/playlist?list=PL9daxiSwWyTbIm8fTa0ypeC6dFfMgXALq</p><p><b>Important clarification: My work in the development team of Oracle APEX is in no way related to my open source projects or the plug-ins here on apex.world! All plug-ins are built in my spare time and are not supported by Oracle!</b></p>",
"keywords": ["oracle", "apex", "plugin", "charts", "region", "responsive", "d3", "heatmap", "calendar", "cards", "html", "badge", "masonry", "map", "escape", "security", "sanitizer", "gauge", "donut", "line", "bar", "pie", "scatter", "list", "icon", "clock", "tables", "note", "editor", "images", "stack", "area"],
"homepage": "https://github.com/RonnyWeiss/APEX-Material-BI-Dashboard",
Expand Down
2 changes: 1 addition & 1 deletion build/bida-calendar.pkgd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/bida-chart.pkgd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/bida-ddd.pkgd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/bida.pkgd.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/bida.pkgd.min.js

Large diffs are not rendered by default.

17 changes: 12 additions & 5 deletions css/billboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 3.6.0
* @version 3.9.1
*/
/*-- Graph Theme --*/
/*-- Default color pattern --*/
Expand Down Expand Up @@ -34,11 +34,12 @@
.bb-legend-item-title,
.bb-xgrid-focus,
.bb-ygrid-focus,
.bb-ygrid,
.bb-event-rect,
.bb-bars path {
.bb-ygrid {
shape-rendering: crispEdges; }

.bb-chart-arcs .bb-needle {
fill: #000; }

/*-- Axis --*/
.bb-axis {
shape-rendering: crispEdges; }
Expand Down Expand Up @@ -144,6 +145,11 @@ rect.bb-circle._expanded_, use.bb-circle._expanded_ {
.bb-title {
font-size: 14px; }

/*-- Treemap --*/
.bb-chart-treemaps rect {
stroke: #fff;
stroke-width: 1px; }

/*-- Tooltip --*/
.bb-tooltip-container {
z-index: 10;
Expand All @@ -163,7 +169,8 @@ rect.bb-circle._expanded_, use.bb-circle._expanded_ {
background-color: #fff;
text-align: left;
font-size: 12px;
box-shadow: .5px .5px 1px #999; }
box-shadow: .5px .5px 1px #999;
white-space: nowrap; }
.bb-tooltip th {
font-size: 12px;
padding: 4px 8px;
Expand Down
1 change: 1 addition & 0 deletions css/html.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
position: absolute;
bottom: calc(50% - 40px);
cursor: pointer;
z-index: 1;
}

.bida-item-html-slide-lc:hover,
Expand Down
19,967 changes: 10,164 additions & 9,803 deletions demoApp/Demo_App.sql

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions indexRaw.html
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
pOptions.success(data);
// used when error
//pOptions.error(data);
}, 200);
}, 0);
break;
case "itemData":
console.log("Try to load async data from item - " + pItems.x02);
Expand All @@ -266,7 +266,7 @@
});
// used when error
//pOptions.error(data);
}, 800);
}, 0);
break;
case "noteUpload":
/* wait to simulate ajax request */
Expand All @@ -275,7 +275,7 @@
pOptions.success();
// used when error
//pOptions.error();
}, 800);
}, 0);
break;
case "imageDownload":
/* used when image download from pluginURL is done by same ajax call then the other calls
Expand Down
Loading

0 comments on commit 4b02763

Please sign in to comment.