Skip to content

Commit

Permalink
Documentation updates
Browse files Browse the repository at this point in the history
  • Loading branch information
martinl-tpg committed Feb 16, 2024
1 parent 4ef7d25 commit 5947363
Show file tree
Hide file tree
Showing 13 changed files with 32 additions and 7 deletions.
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,38 @@ Easy Reports supports the following chart types:
- Bubble (future release)

## Theming
Easy Reports supports three themes, and a custom option;
Easy Reports supports multiple themes, a fully customisable theme option and automatically using data choice value colours;

- Simple (A basic starter theme)

![Simple](/assets/simple-theme.png)

- PowerApps (styled on Microsoft PowerApps purple colour)

![PowerApps](/assets/powerapps-theme.png)

- Fluent (styled on Microsoft's Fluent UI style guide used across all Microsoft products)

![Fluent](/assets/fluent-theme.png)

- Material (A Google Material styled theme)

![Material](/assets/material-theme.png)

- Sheets (A Google Sheets inspired theme)

![Sheets](/assets/sheets-theme.png)

- Polychroma (A bright theme)

![Polychroma](/assets/polychroma-theme.png)

- Custom (fully custom theme based on your own colour palette)

Additionally Choice value colours are automatically used in charts, when the chart is displaying the data related to that option set.

![Data](/assets/data-theme.png)

# Installation

Download the managed solution here and import into your environment.
2 changes: 1 addition & 1 deletion Solution/src/Other/Solution.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<LocalizedName description="EasyCharts for PowerApps" languagecode="1033" />
</LocalizedNames>
<Descriptions />
<Version>0.3.2</Version>
<Version>0.9.3</Version>
<!-- Solution Package Type: Unmanaged(0)/Managed(1)/Both(2)-->
<Managed>2</Managed>
<Publisher>
Expand Down
Binary file added assets/data-theme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/fluent-theme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/material-theme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/polychroma-theme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/powerapps-theme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/sheets-theme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/simple-theme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "report-pcf",
"version": "0.3.2",
"version": "0.9.3",
"description": "Easy charts PowerApps Component",
"scripts": {
"build": "pcf-scripts build",
Expand Down
2 changes: 1 addition & 1 deletion reporter/ControlManifest.Input.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest>
<control namespace="nb" constructor="Reporter" version="0.3.2" display-name-key="Easy Charts" description-key="Easy Charts PowerApps Component" control-type="virtual">
<control namespace="nb" constructor="Reporter" version="0.9.3" display-name-key="Easy Charts" description-key="Easy Charts PowerApps Component" control-type="virtual">
<external-service-usage enabled="false">
</external-service-usage>
<data-set name="tableData" display-name-key="TableData_Display_Key" description-key="TableData_Desc_Key">
Expand Down
1 change: 0 additions & 1 deletion reporter/component/Themeing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export class Themeing {
}

private static selectChartTheme(theme: ITheme | null, customTheme: string | null): AgChartTheme {
// return PolychromaTheme;
switch (theme) {
case 'CustomTheme':
const chartTheme: AgChartTheme = {
Expand Down

0 comments on commit 5947363

Please sign in to comment.