powerbi-report-authoring/README.md

63 строки
3.9 KiB
Markdown
Исходник Постоянная ссылка Обычный вид История

2019-05-19 17:32:35 +03:00
# powerbi-report-authoring
2019-05-19 17:32:35 +03:00
This library is an extension of powerbi-client library.
While powerbi-client library helps for embedding Power BI reports into your apps, powerbi-report-authoring helps for editing Power BI reports programatically.
[![NPM Version](https://img.shields.io/npm/v/powerbi-report-authoring.svg)](https://www.npmjs.com/package/powerbi-report-authoring/)
[![Nuget Version](https://img.shields.io/nuget/v/Microsoft.PowerBI.ReportAuthoring.svg)](https://www.nuget.org/packages/Microsoft.PowerBI.ReportAuthoring/)
[![NPM Total Downloads](https://img.shields.io/npm/dt/powerbi-report-authoring.svg)](https://www.npmjs.com/package/powerbi-Report-Authoring)
[![NPM Monthly Downloads](https://img.shields.io/npm/dm/powerbi-report-authoring.svg)](https://www.npmjs.com/package/powerbi-Report-Authoring)
[![GitHub tag](https://img.shields.io/github/tag/microsoft/powerbi-report-authoring.svg)](https://github.com/Microsoft/powerbi-report-authoring/tags)
[![Gitter](https://img.shields.io/gitter/room/Microsoft/powerbi-report-authoring.svg)](https://gitter.im/Microsoft/powerbi-report-authoring)
2019-05-19 17:32:35 +03:00
## Wiki
2019-05-19 17:32:35 +03:00
See [powerbi-client wiki](https://github.com/Microsoft/PowerBI-JavaScript/wiki) for more details about embedding Power BI reports.
See [powerbi-report-authoring wiki](https://github.com/microsoft/powerbi-report-authoring/wiki) for more details about authoring Power BI reports in embed session.
2019-05-19 17:32:35 +03:00
Install from NPM:
`npm install --save powerbi-report-authoring`
2019-05-19 17:32:35 +03:00
## Include the library via import or manually
Ideally you would use module loader or compilation step to import using ES6 modules as:
``` javascript
2019-05-19 17:32:35 +03:00
import 'powerbi-report-authoring';
```
However, the library is exported as a Universal Module and the powerbi-report-authoring.js script can be included before your apps closing `</body>` tag and after including powerbi-client as:
``` html
2019-05-19 17:32:35 +03:00
<script src="<path>/powerbi-client/dist/powerbi.js"></script>
<script src="<path>/powerbi-report-authoring/dist/powerbi-report-authoring.js"></script>
```
When included directly the library is extending classes and interfaces from 'powerbi-client' library.
## Code of Conduct
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
2024-10-14 08:24:49 +03:00
## Contributing
2019-05-19 17:32:35 +03:00
2019-05-19 17:40:18 +03:00
This project welcomes contributions and suggestions. Most contributions require you to agree to a
2019-05-19 17:32:35 +03:00
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
2024-10-14 08:24:49 +03:00
## Support
- **Feature Requests:** Submit your ideas and suggestions to the [Fabric Ideas Portal](https://ideas.fabric.microsoft.com/), where you can also vote on ideas from other developers.
- **Bug Reports and Technical Assistance:** Visit the [Fabric Developer Community Forum](https://community.fabric.microsoft.com/t5/Developer/bd-p/Developer). Our team and community experts are ready to assist you.
2024-10-14 08:24:49 +03:00
- **Additional Support:** Contact your account manager or reach out to the [Fabric Support Team](https://support.fabric.microsoft.com/en-us/support/).