Created
June 5, 2021 19:22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Kendo Radial Gauge Range Example</title> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2021.1.224/styles/kendo.default-v2.min.css" /> | |
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> | |
<script src="https://kendo.cdn.telerik.com/2021.2.511/js/kendo.all.min.js"></script> | |
</head> | |
<body> | |
<div id="gauge"></div> | |
<script> | |
$("#gauge").kendoRadialGauge({ | |
transitions: false, | |
pointer: { | |
value: 40 | |
}, | |
scale: { | |
min: 0, | |
max: 100, | |
ranges: [{ | |
from: 70, | |
color: "red" | |
}], | |
// rangePlaceholderColor: "rgba(0, 0, 0, 0)", // transparent alpha channel, rgba notation | |
rangePlaceholderColor: "transparent", // simplest | |
// rangePlaceholderColor: "#00000000", // transparent alpha channel #rrggbbaa, in hex | |
} | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment