forked from grafana/grafana-polystat-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to Roboto font, fix value font scaling (grafana#26)
* Switch to Roboto font, fix value font scaling * move params outside of panel config * refactor variables, add global unit format and decimals to options * handle lack of thresholds * add roboto * add support for global unit formatting * update changes * implement new threshold processor * use gf-form-switch vs editor-checkbox * consistent naming and formatting for click through url * disable all shapes other than hexagon and circle * allow bitwise * implement custom color gradients per override * remove debug output * update version to 1.0.13 * update doc * update dist * comment out import * add comments * temp fix for tests * update tests * update tests * fix mock
- Loading branch information
Showing
39 changed files
with
1,110 additions
and
738 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export declare class Color { | ||
r: number; | ||
g: number; | ||
b: number; | ||
constructor(r: number, g: number, b: number); | ||
asHex(): string; | ||
asRGB(): string; | ||
blendWith(col: any, a: any): Color; | ||
Mul(col: any, a: any): Color; | ||
fromHex(hex: any): void; | ||
static createGradients(data: any): any; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Oops, something went wrong.