-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5bd3c95
commit 5e65edb
Showing
20 changed files
with
2,764 additions
and
5,193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
<mat-toolbar class="toolbar noselect" color="accent"> | ||
<h1 matTooltip="Visit the documentation site for Stock Indicators for .NET"> | ||
<a href="https://daveskender.github.io/Stock.Indicators/"> | ||
Stock.Charts | ||
<div [ngClass]="ts.isDarkTheme ? 'dark-theme' : 'light-theme'"> | ||
<mat-toolbar class="toolbar noselect"> | ||
<h1 matTooltip="Visit the documentation site for Stock Indicators for .NET"> | ||
<a href="https://daveskender.github.io/Stock.Indicators/"> | ||
Stock.Charts | ||
</a> | ||
</h1> | ||
<div class="filler"></div> | ||
<a class="badge" href="https://www.nuget.org/packages/Skender.Stock.Indicators" | ||
matTooltip="NuGet package for Stock Indicators for .NET"> | ||
<img src="https://img.shields.io/nuget/v/skender.stock.indicators?color=black&logo=NuGet&label=NuGet" /> | ||
</a> | ||
</h1> | ||
<div class="filler"></div> | ||
<a class="badge" href="https://www.nuget.org/packages/Skender.Stock.Indicators" | ||
matTooltip="NuGet package for Stock Indicators for .NET"> | ||
<img src="https://img.shields.io/nuget/v/skender.stock.indicators?color=black&logo=NuGet&label=NuGet" /> | ||
</a> | ||
<div matTooltip="GitHub repository for this demo"> | ||
<a href="https://github.com/DaveSkender/Stock.Charts"> | ||
<fa-icon [icon]="faGithub" size="2x"></fa-icon> | ||
</a> | ||
</div> | ||
</mat-toolbar> | ||
<div matTooltip="GitHub repository for this demo"> | ||
<a href="https://github.com/DaveSkender/Stock.Charts"> | ||
<fa-icon [icon]="faGithub" size="2x"></fa-icon> | ||
</a> | ||
</div> | ||
</mat-toolbar> | ||
|
||
<div id="main-content" class="body-container"> | ||
<app-chart></app-chart> | ||
<div id="main-content" class="body-container"> | ||
<app-chart></app-chart> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
import { Component } from '@angular/core'; | ||
import { Component, OnInit } from '@angular/core'; | ||
import { faGithub } from '@fortawesome/free-brands-svg-icons'; | ||
import { StyleService } from './style.service'; | ||
|
||
@Component({ | ||
selector: 'app-root', | ||
templateUrl: './app.component.html', | ||
styleUrls: ['./app.component.scss'] | ||
}) | ||
export class AppComponent { | ||
export class AppComponent implements OnInit { | ||
|
||
faGithub = faGithub; | ||
|
||
constructor( | ||
public readonly ts: StyleService, | ||
) { } | ||
|
||
ngOnInit(): void { | ||
this.ts.getTheme(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.