├── .github └── ISSUE_TEMPLATE │ ├── config.yml │ ├── feature-request.yml │ └── bug-report.yml ├── README.md └── LICENSE /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Issues with FREE Power BI Custom Visuals by OKVIZ 2 | 3 | This repo is intended to collect issues with free visuals such as: 4 | 5 | - Candlestick 6 | - Card with States 7 | - Smart Filter (FREE) 8 | - Sparkline 9 | 10 | For premium visuals, please use a dedicated repo: 11 | 12 | - **Bullet Chart:** https://github.com/okviz/bullet-chart-issues 13 | - **Calendar Pro:** https://github.com/okviz/calendar-pro-issues 14 | - **Smart Filter Pro** https://github.com/okviz/smart-filter-pro-issues 15 | - **Synoptic Panel:** https://github.com/okviz/synoptic-panel-issues 16 | 17 | 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 OKViz Corp. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- 1 | name: 💡 Feature Request 2 | description: Suggest an idea for this project. 3 | labels: enhancement 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: Thanks for submitting a feature request! 8 | - type: dropdown 9 | id: visualName 10 | attributes: 11 | label: Visual 12 | description: Select the visual you are suggesting an enhancement. 13 | options: 14 | - Candlestick 15 | - Card with States 16 | - Smart Filter (FREE) 17 | - Sparkline 18 | validations: 19 | required: true 20 | - type: textarea 21 | attributes: 22 | label: The feature request 23 | description: Write a clear and concise description of what the feature or problem is. 24 | validations: 25 | required: true 26 | - type: textarea 27 | attributes: 28 | label: Proposed solution 29 | description: Share how this will benefit this visual for Power BI and its users. 30 | validations: 31 | required: true 32 | - type: textarea 33 | attributes: 34 | label: Additional context 35 | description: Please include any other context, like screenshots or mockups, if applicable. 36 | validations: 37 | required: false 38 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- 1 | name: 🐛 Bug Report 2 | description: Let us know if something is expected to work, but doesn't. 3 | labels: ["bug", "untriaged"] 4 | body: 5 | - type: dropdown 6 | id: visualName 7 | attributes: 8 | label: Visual 9 | description: Select the visual you experienced the issue. 10 | options: 11 | - Candlestick 12 | - Card with States 13 | - Smart Filter (FREE) 14 | - Sparkline 15 | validations: 16 | required: true 17 | - type: checkboxes 18 | attributes: 19 | label: Is there an existing issue for this? 20 | description: Before opening a bug report please search for the behaviour in the existing issues. 21 | options: 22 | - label: I have searched the existing issues 23 | required: true 24 | - type: textarea 25 | attributes: 26 | label: Current Behavior 27 | description: Describe the issue you are experiencing with this visual. Provide a clear and concise description of what you were trying to do and what happened, along with any error messages you encountered. 28 | validations: 29 | required: true 30 | - type: dropdown 31 | attributes: 32 | label: Power BI 33 | description: Check where the issue raised. 34 | options: 35 | - Power BI Desktop 36 | - Power BI service 37 | - Power BI iOS app 38 | - Power BI Android app 39 | multiple: true 40 | validations: 41 | required: true 42 | - type: input 43 | attributes: 44 | label: Power BI Version 45 | description: Enter the specific Power BI version used. 46 | validations: 47 | required: false 48 | - type: textarea 49 | attributes: 50 | label: Steps To Reproduce 51 | description: Steps to reproduce the behavior. 52 | placeholder: | 53 | 1. In this environment... 54 | 2. With this config... 55 | 3. With these options... 56 | 4. See error... 57 | validations: 58 | required: false 59 | - type: textarea 60 | attributes: 61 | label: Sample report 62 | description: Include a sample report (.PBIX zipped as .ZIP file) that reproduces the issue. If the report contains private data, please recreate the issue in a sample report with dummy data or send it us at support@okviz.com. 63 | validations: 64 | required: true 65 | - type: textarea 66 | attributes: 67 | label: Screenshot 68 | description: Add screenshots to help explain your problem, if applicable. 69 | validations: 70 | required: false 71 | - type: textarea 72 | attributes: 73 | label: Anything else? 74 | description: | 75 | Links? References? Anything that will give us more context about the issue you are encountering! 76 | 77 | Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. 78 | validations: 79 | required: false 80 | --------------------------------------------------------------------------------