File

lib/components/plots-container/plots-container.component.ts

Description

Container around an application's plots.

Metadata

Index

Properties

Properties

Readonly containerClass
Default value : input('grid-container-widescreen')

Grid layout class

import {NgClass} from '@angular/common';
import {Component, input} from '@angular/core';

/**
 * Container around an application's plots.
 */
@Component({
  imports: [NgClass],
  selector: 'nshmp-plots-container',
  styleUrl: './plots-container.component.scss',
  templateUrl: './plots-container.component.html',
})
export class NshmpPlotsContainerComponent {
  /** Grid layout class */
  readonly containerClass = input('grid-container-widescreen');
}
<div class="plots" [ngClass]="containerClass()">
  <div class="padding-y-4">
    <ng-content />
  </div>
</div>
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""