Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/germainlefebvre4/tech-radar
Infrastructure Tech Radar
https://github.com/germainlefebvre4/tech-radar
Last synced: 15 days ago
JSON representation
Infrastructure Tech Radar
- Host: GitHub
- URL: https://github.com/germainlefebvre4/tech-radar
- Owner: germainlefebvre4
- License: mit
- Created: 2019-07-18T09:55:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-04T03:37:41.000Z (almost 2 years ago)
- Last Synced: 2024-10-10T20:52:04.047Z (about 1 month ago)
- Size: 1.12 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Motivation
## Usage
1. include `d3.js` and `radar.js`:
```html
```
2. insert an empty `svg` tag:
```html
```
3. configure the radar visualization:
```js
radar_visualization({
svg_id: "radar",
width: 1450,
height: 1000,
colors: {
background: "#fff",
grid: "#bbb",
inactive: "#ddd"
},
title: "My Radar",
quadrants: [
{ name: "Bottom Right" },
{ name: "Bottom Left" },
{ name: "Top Left" },
{ name: "Top Right" }
],
rings: [
{ name: "INNER", color: "#93c47d" },
{ name: "SECOND", color: "#b7e1cd" },
{ name: "THIRD", color: "#fce8b2" },
{ name: "OUTER", color: "#f4c7c3" }
],
print_layout: true,
entries: [
{
label: "Some Entry",
quadrant: 3, // 0,1,2,3 (counting clockwise, starting from bottom right)
ring: 2, // 0,1,2,3 (starting from inside)
moved: -1 // -1 = moved out (triangle pointing down)
// 0 = not moved (circle)
// 1 = moved in (triangle pointing up)
},
// ...
]
});
```Entries are positioned automatically so that they don't overlap.
As a working example, you can check out `docs/index.html` — the source of our [public Tech
Radar](http://zalando.github.io/tech-radar/).## Local Development
1. install dependencies with yarn (or npm):
```
yarn
```2. start local dev server:
```
yarn start
```3. your default browser should automatically open and show the url
```
http://localhost:3000/
```## License
```
The MIT License (MIT)Copyright (c) 2017 Zalando SE
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```