12

如何在现有的 Angular 应用程序中自定义 Ag-Grid 主题(例如 ag-theme-material.css)?

他们提供的文档缺乏,因为它没有解释如何执行这些更改/配置。

任何帮助将不胜感激。

4

2 回答 2

10

添加 ag-grid-overrides.scss 文件并放置要为 ag-grid 主题修改的 saas 变量。可以在此链接中找到可用的 sass 变量的完整列表 - https://github.com/ag-grid/ag-grid/tree/master/src/styles。在您的 component.ts 文件中导入 ag-grid-overrides.scss。您仍然可以为每个组件拥有自己的 .css 文件,如下面的 app.component.css 文件所示。

app.component.ts

import '../ag-grid-overrides.scss';

app.component.html

<ag-grid-angular class="data-grid ag-theme-fresh" [gridOptions]="gridOptions">
</ag-grid-angular>

ag-grid-overrides.scss

// Customize the look and feel of the grid with Sass variables
// Up-to-date list of variables is available in the source code: https://github.com/ag-grid/ag-grid/blob/latest/src/styles/theme-fresh.scss 
$icons-path: "~ag-grid/src/styles/icons/";

// changes the border color
$border-color: #FF0000;

// Changes the font size
$font-size: 14px;

// Changes the font family
//$font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

// Reverts the cell horizontal padding change between ag-fresh and ag-theme-fresh
//$cell-horizontal-padding: 2px;

// changes the icon color
// $icon-color: red;
//$primary-color: green;

@import '~ag-grid/src/styles/ag-grid.scss';
@import '~ag-grid/src/styles/ag-theme-fresh.scss';

app.component.css(不需要,因为这是 ag-grid-angular 上的自定义类)

.data-grid {
  width: 500px; height: 300px; margin-bottom: 1rem;
}

角-cli.json

"styles": [
        "../node_modules/ag-grid/dist/styles/ag-grid.css",
        "../node_modules/ag-grid/dist/styles/ag-theme-fresh.css",
        "styles.scss",
        "ag-grid-overrides.scss"
      ]
于 2018-03-16T16:29:57.227 回答
3

在我的情况下,它用于"ag-grid-enterprise": "^23.1.0""ag-grid-community": "^23.1.0"并为 angular2+ 应用程序创建自定义主题,您应该导入到全局样式文件(scss 用于我的案例)来自 ag-grid-community 包的几个 mixins 文件,它看起来像这样:

@import '~ag-grid-community/src/styles/ag-grid';
@import '~ag-grid-community/src/styles/ag-theme-base/sass/ag-theme-base';

那么您应该包含带有参数集的基本主题,您可以为此默认主题覆盖这些主题:

.ag-theme-base {//should have specific name, since sizes doesn't work with custom name
  @include ag-theme-base(
    (
      foreground-color: black,
      background-color: yellow,
    )// this is parameters set object where you can ovveride ag-grid properties 
  );
}

您可以找到链接的 ag-grid 参数列表

此外,您可以提取此参数并应用于其他元素(不确定这是一个有用的选项,但 ag-grid 允许这样做)

.ag-header-cell {
  background-color: ag-param(foreground-color);
  color: ag-param(background-color);
}

链接到有关 ag-param 函数链接的文档。链接到有关主题自定义链接的文档。

角度使用示例:

<ag-grid-angular
  style="width: 100%; height: 400px;"
  class="ag-theme-base"
  ...
>
</ag-grid-angular>
于 2020-05-19T19:55:42.050 回答