Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #96

Merged
merged 10 commits into from
Jun 3, 2024
Merged

Dev #96

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
dist
coverage
test
.eslintrc.js
karma.conf.ts
test.webpack.config.js
20 changes: 20 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
env: {
"browser": true,
"es6": true,
"es2017": true
},
root: true,
parser: "@typescript-eslint/parser",
parserOptions: {
project: "tsconfig.json",
tsconfigRootDir: ".",
},
plugins: [
"powerbi-visuals"
],
extends: [
"plugin:powerbi-visuals/recommended"
],
rules: {}
};
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: build

on:
push:
branches: [ main, dev, certification]
pull_request:
branches: [ main, dev, certification ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm audit
continue-on-error: true
- run: npm outdated
continue-on-error: true
- run: npm ci
- run: npm run eslint --if-present
- run: npm run lint --if-present
- run: npm run package
- run: npm test
env:
CI: true
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ typings
*.log
/coverage
.idea/*
webpack.statistics.html
webpack.statistics.*.html
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 3.1.3.0
* Add new translations

## 3.1.2.0
* Fix styling options for the legend

## 3.1.1.0
* Disable keyboard navigation in format mode

## 3.1.0.0
* API 5.8.0
* Add onObject formatting feature

## 3.0.0.0
* API 5.7.0
* Updated outdated packages
* Added keyboard navigation
* Migrated to formatting model
* Added context menu support
* Added rendering events

## 2.0.2
* UPD: powerbi-visuals-tools has been updated to 3.0.9 to add IE11 support
* UPD: API has been updated to 2.3.0 to add IE11 support
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# PowerBI-visuals-RadarChart
[![Build Status](https://travis-ci.org/Microsoft/PowerBI-visuals-RadarChart.svg?branch=master)](https://travis-ci.org/Microsoft/PowerBI-visuals-RadarChart) [![Coverage Status](https://coveralls.io/repos/github/Microsoft/PowerBI-visuals-RadarChart/badge.svg?branch=master)](https://coveralls.io/github/Microsoft/PowerBI-visuals-RadarChart?branch=master)
[![Build Status](https://dev.azure.com/customvisuals/public/_apis/build/status/Microsoft.powerbi-visuals-chord)](https://dev.azure.com/customvisuals/public/_build/latest?definitionId=7)
[![Build Status](https://github.com/microsoft/powerbi-visuals-radarchart/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/microsoft/powerbi-visuals-radarchart/actions/workflows/build.yml)

> A simple radar chart supporting multiple measures plotted over a categorical axis. Also known as a web chart, spider chart, or star chart. Use to display performance metrics for quality improvement.

![Radar chart screenshot](https://az158878.vo.msecnd.net/marketing/Partner_21474836617/Product_42949680591/Asset_4dca5dfd-442f-4472-8dc7-31c886a3ebb8/RadarChartscreenshot1.png)
![Radar chart screenshot](assets/screenshot.png)
# Overview
A radar chart is a graphical method of displaying multivariate data in the form of a two-dimensional chart of three or more quantitative variables represented on axes starting from the same point. The relative position and angle of the axes is typically uninformative.

Expand Down
33 changes: 0 additions & 33 deletions azure-pipelines.yml

This file was deleted.

Loading
Loading