igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
102 lines (101 loc) • 3.49 kB
JavaScript
import { FontDefaults } from "igniteui-angular-core";
var defaultFont = "Verdana, \"Segoe UI\", Arial, \"Myriad Pro\", sans-serif";
export var LinearGaugeStylingDefaults = {
//"ui-lineargauge-backing": {
// "background-color": "#ffffff",
// "border-color": "#ffffff"
//},
"ui-lineargauge-needle": {
"background-color": "#999999",
"border-top-color": "#FFFFFF"
},
"ui-lineargauge-scale": {
"background-color": "transparent",
"border-top-color": "transparent"
},
"ui-lineargauge-tick": {
"background-color": "rgba(0, 0, 0, 0.35)",
"border-top-color": "transparent"
},
"ui-lineargauge-minortick": {
"background-color": "rgba(0, 0, 0, 0.2)",
"border-top-color": "transparent"
},
"ui-lineargauge-label": {
"background-color": FontDefaults.gaugesFontBrush.fill,
"border-top-color": "transparent"
},
"ui-lineargauge-range-palette-1": {
"background-color": "#0078C8",
"border-top-color": "transparent"
},
"ui-lineargauge-range-palette-2": {
"background-color": "#0099FF",
"border-top-color": "transparent"
},
"ui-lineargauge-range-palette-3": {
"background-color": "#21A7FF",
"border-top-color": "transparent"
},
"ui-lineargauge-range-palette-4": {
"background-color": "#4FB9FF",
"border-top-color": "transparent"
},
"ui-lineargauge-range-palette-5": {
"background-color": "#79C9FF",
"border-top-color": "transparent"
},
"ui-lineargauge-needle-palette-1": {
"background-color": "#e0e0e0",
"border-top-color": "transparent"
},
"ui-lineargauge-needle-palette-2": {
"background-color": "#c0c0c0",
"border-top-color": "transparent"
},
"ui-lineargauge-needle-palette-3": {
"background-color": "#999999",
"border-top-color": "transparent"
},
"ui-lineargauge-needle-palette-4": {
"background-color": "#494949",
"border-top-color": "transparent"
},
"ui-lineargauge-needle-palette-5": {
"background-color": "#353535",
"border-top-color": "transparent"
},
//"ui-lineargauge-tooltip": {
// "border-style": "none",
// "white-space": "nowrap",
// "background-color": "transparent"
//},
//"ui-lineargauge-range-tooltip": {
// "border-style": "solid",
// "border-width": "2px",
// "border-radius": "4px",
// "background-color": "rgba(230, 230, 230, 0.74)",
// "padding": "4px",
// "font-weight": "bold"
//},
//"ui-lineargauge-needle-tooltip": {
// "border-style": "solid",
// "border-width": "2px",
// "border-radius": "4px",
// "background-color": "rgba(230, 230, 230, 0.74)",
// "padding": "4px",
// "font-weight": "bold"
//},
"ui-lineargauge": {
"font-family": FontDefaults.gaugesFontFamily,
"font-size": FontDefaults.gaugesFontSize + "px",
"color": FontDefaults.gaugesFontBrush.fill
},
"font-family": FontDefaults.gaugesFontFamily,
"font-style": "normal",
"font-weight": FontDefaults.gaugesFontWeight,
"font-size": FontDefaults.gaugesFontSize + "px",
"color": FontDefaults.gaugesFontBrush.fill,
"font-variant": "",
"line-height": ""
};