Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
chad-ramos committed Jul 25, 2024
1 parent 778372f commit 92c6492
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 15 deletions.
7 changes: 1 addition & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# Node.js with Angular
# Build a Node.js project that uses Angular.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript

trigger:
- master
- no

pr:
branches:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@
<pcac-line-area-chart [config]="pcService.areaChartConfig"
(dotClicked)="pcService.onClicked($event)"></pcac-line-area-chart>
</div>
-->
<div class="pc-chart-container">
<pcac-line-area-chart [config]="pcService.lineChartConfig"
(dotClicked)="pcService.onClicked($event)"></pcac-line-area-chart>
</div>

-->
</div>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<h6 id="configuration">Configuration</h6>
<table class="table">
<table class="s">
<thead>
<tr>
<th>Name</th>
Expand All @@ -10,21 +10,24 @@ <h6 id="configuration">Configuration</h6>
<tr>
<td>data</td>
<td>Collection of
<a routerLink="/docs/guides/data-contract">IPcacData</a> objects.</td>
<a routerLink="/docs/guides/data-contract">IPcacData</a> objects.
</td>
</tr>
<tr>
<td>height</td>
<td>Height of chart component.</td>
</tr>
<tr *ngIf="includeTickFormat">
@if(includeTickFormat) {
<tr>
<td>tickFormat</td>
<td>Set this value to change the formatting of the domain axis of your chart and the tooltip value formatting.
<ul>
<li>
<b>Percentage</b>
<ul>
<li>
All values will be shifted by 100, and a percentage symbol will be added to your domain access and value displayed in the
All values will be shifted by 100, and a percentage symbol will be added to your domain access and value
displayed in the
tooltip.
</li>
<li>
Expand All @@ -35,14 +38,19 @@ <h6 id="configuration">Configuration</h6>
</ul>
</td>
</tr>
<tr *ngIf="includeHideAxisAndGrid">
}
@if(includeHideAxisAndGrid) {
<tr>
<td>hideAxis</td>
<td>If true, hide chart axis.</td>
</tr>
<tr *ngIf="includeHideAxisAndGrid">
}
@if(includeHideAxisAndGrid) {
<tr>
<td>hideGrid</td>
<td>If true, hide chart grid.</td>
</tr>
}
</tbody>
<ng-content></ng-content>
</table>
</table>

0 comments on commit 92c6492

Please sign in to comment.