![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@covalent/charts
Advanced tools
<td-charts>
is a directive for Ng2 + D3 V4 Chart. This is a parent element and all the charts would be rendered inside this.
Properties:
Name | Type | Description |
---|---|---|
title? | string | Sets the Chart Title |
chartHeight? | string | Sets the height of the chart |
shadow? | boolean | Flag to enable shadows in chart |
shadowDepth? | array[] | Set the parameters for shadowDepth (size, y offset, x offset, blur) |
shadowColor? | string | Sets shadow color for the charts (rgba preferred) |
fillOpacity? | number | Sets opacity for the charts |
margin? | IChartMargin | Sets SVG margin (top, right, bottom, left) |
Import the [CovalentChartsModule] using the forRoot() method in your NgModule:
import { CovalentChartsModule } from '@covalent/charts';
@NgModule({
imports: [
CovalentChartsModule.forRoot(),
...
],
...
})
export class MyModule {}
Example for HTML usage:
<td-charts title="Sales Bar/Line Combo Chart"
[margin]="{top: 50, bottom: 50}"
chartHeight="450"
[shadow]="true"
[shadowDepth]="['125%', 2, 0, 2]"
shadowColor="rgba(0, 0, 0, 0.54)"
fillOpacity="0.95">
<td-axis-x [link]="chartLine1" [ticks]="true" [show]="true" [grid]="false" legend="Day Offset"></td-axis-x>
<td-axis-y-left [link]="chartLine1" [ticks]="true" [show]="true" [grid]="false" legend="Sales"></td-axis-y-left>
<td-axis-y-right [link]="chartBar1" [ticks]="true" [show]="true" [grid]="true" legend="Sales 2"></td-axis-y-right>
<td-chart-bar #chartBar1 [colors]="['amber', 'orange']"
dataSrc="platform/charts/chart-line/datatime.csv"
[padding]="0.1"
bottomAxis="date"
columns="close"
titles="close"
[transition]="true"
transitionDuration="2050"
transitionDelay="5000">
</td-chart-bar>
<td-chart-line #chartLine1 dataSrc="platform/charts/chart-line/datatime.csv"
timeSeries="true"
bottomAxis="date"
[columns]="['close']"
[titles]="['close']"
[colors]="['#03a9f4']"
[transition]="true"
transitionDuration="2000"
transitionDelay="5000">
</td-chart-line>
</td-charts>
FAQs
Teradata UI Platform Charts Module
The npm package @covalent/charts receives a total of 3 weekly downloads. As such, @covalent/charts popularity was classified as not popular.
We found that @covalent/charts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.