Skip to content

Instantly share code, notes, and snippets.

@abesh
abesh / colorcircle.css
Last active August 29, 2015 13:57
ColorCircle - Traffic Lights in SAPUI5
.circlered-text {
width:50%;
}
.circlered-text:after {
content: "";
display: block;
width: 100%;
height:0;
padding-bottom: 100%;
background: #FF0000;
@abesh
abesh / gauge.js
Last active March 21, 2023 09:23
Gauges in SAPUI5
function Gauge(placeholderName, configuration)
{
this.placeholderName = placeholderName;
var self = this; // for internal d3 functions
this.configure = function(configuration)
{
this.config = configuration;