File

src/app/components/matrix/matrix.component.ts

Description

Angular component for displaying a matrix.

Metadata

selector app-matrix
styleUrls matrix.component.css
templateUrl matrix.component.html

Inputs

container

Initializes a new instance of the MatrixComponent class.

Type: any

Constructor

constructor(el: any, grapheS: any, darkModeS: any)
import { Component, Input, ElementRef } from '@angular/core';
import { DarkModeService } from 'src/app/Services/dark-mode.service';
import { GrapheService } from 'src/app/Services/graphe.service';

/**
 * Angular component for displaying a matrix.
 */
@Component({
  selector: 'app-matrix',
  templateUrl: './matrix.component.html',
  styleUrls: ['./matrix.component.css']
})
export class MatrixComponent {
  /**
   * Initializes a new instance of the MatrixComponent class.
  */
  @Input() container:any;
  constructor(private el:ElementRef,protected grapheS:GrapheService,protected darkModeS:DarkModeService) {}
  
}

results matching ""

    No results matching ""