SharpAstrology.Symbols.BlazorComponents 0.1.0

dotnet add package SharpAstrology.Symbols.BlazorComponents --version 0.1.0
                    
NuGet\Install-Package SharpAstrology.Symbols.BlazorComponents -Version 0.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SharpAstrology.Symbols.BlazorComponents" Version="0.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SharpAstrology.Symbols.BlazorComponents" Version="0.1.0" />
                    
Directory.Packages.props
<PackageReference Include="SharpAstrology.Symbols.BlazorComponents" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SharpAstrology.Symbols.BlazorComponents --version 0.1.0
                    
#r "nuget: SharpAstrology.Symbols.BlazorComponents, 0.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SharpAstrology.Symbols.BlazorComponents@0.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SharpAstrology.Symbols.BlazorComponents&version=0.1.0
                    
Install as a Cake Addin
#tool nuget:?package=SharpAstrology.Symbols.BlazorComponents&version=0.1.0
                    
Install as a Cake Tool

SharpAstrology.Symbols.BlazorComponents

This package provides the planet and zodiac symbols of the SharpAstrology project as Blazor components. It is the shared foundation of all chart packages.

SharpAstrology Packages

Package Description Licence
SharpAstrology.Base Base library MIT
SharpAstrology.SwissEph Ephemerides package based on SwissEphNet AGPL-3.0
SharpAstrology.Symbols.BlazorComponents Astrological symbols as Blazor components MIT
SharpAstrology.HumanDesign Extensions for the Human Design system MIT
SharpAstrology.HumanDesign.BlazorComponents Human Design charts as Blazor components MIT
SharpAstrology.Vedic Extensions for Vedic astrology systems MIT
SharpAstrology.Vedic.BlazorComponents Vedic astrology charts as Blazor components MIT
SharpAstrology.West Extensions for western astrology systems MIT
SharpAstrology.West.BlazorComponents Western astrology charts as Blazor components MIT
SharpAstrology.WebApp Blazor Server app built on the SharpAstrology packages AGPL-3.0

Install

dotnet add package SharpAstrology.Symbols.BlazorComponents

This package depends on SharpAstrology.Base only. Every chart package pulls it in. Here is the dependency graph.

flowchart LR
    symbols[SharpAstrology.Symbols.BlazorComponents]-->base[SharpAstrology.Base]
    west[SharpAstrology.West]-->base
    vedic[SharpAstrology.Vedic]-->base
    hd[SharpAstrology.HumanDesign]-->base
    westc[SharpAstrology.West.BlazorComponents]-->west
    westc-->symbols
    vedicc[SharpAstrology.Vedic.BlazorComponents]-->vedic
    vedicc-->symbols
    hdc[SharpAstrology.HumanDesign.BlazorComponents]-->hd
    hdc-->symbols

Components

PlanetSymbol draws the glyph of a planet. ZodiacSymbol draws the glyph of a zodiac sign. Both are plain svg elements without their own root element, so they have to be placed inside an svg.

Both live in the namespace SharpAstrology.BlazorComponents, the same namespace the chart packages use.

Examples

How can I put the symbols into a table?

@using SharpAstrology.BlazorComponents
@using SharpAstrology.Enums

<table>
    <tr>
        <td>
            <svg width="24" height="24" viewBox="0 0 1 1">
                <PlanetSymbol Planet="Planets.Mercury" ShowRetrograde="true" />
            </svg>
        </td>
        <td>
            <svg width="24" height="24" viewBox="0 0 1 1">
                <ZodiacSymbol Sign="Zodiac.Virgo" />
            </svg>
        </td>
    </tr>
</table>

How can I change the look of the retrograde marker?

By default the R next to a retrograde planet is filled with the color of the symbol. RetrogradeMarkerStyles.Outlined draws it as an outline instead.

<svg width="24" height="24" viewBox="0 0 1 1">
    <PlanetSymbol Planet="Planets.Mercury" ShowRetrograde="true"
                  RetrogradeMarkerStyle="RetrogradeMarkerStyles.Outlined" />
</svg>

The lunar nodes never carry the marker, because a node is always retrograde.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on SharpAstrology.Symbols.BlazorComponents:

Package Downloads
SharpAstrology.HumanDesign.BlazorComponents

This package is part of the SharpAstrology project. It provides Blazor components to display Human Design Body Graph content.

SharpAstrology.West.BlazorComponents

This package provides useful Blazor components to display information of an AstrologyChart class from the SharpAstrology.Base package.

SharpAstrology.Vedic.BlazorComponents

This package provides useful Blazor components to display information of an AstrologyChart class from the SharpAstrology.Base package in the charts of Vedic astrology.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0 142 7/30/2026