JavaScript/jQuery LinearGauge - title.font
Specifies font options for the title.
                        Type:
                    
        jQuery
index.js
$(function() {
    $("#linearGaugeContainer").dxLinearGauge({
        // ...
        title: {
            font: {
                color: "black"
            }
        }
    });
});Angular
app.component.html
app.component.ts
app.module.ts
<dx-linear-gauge ... >
    <dxo-title ... >
        <dxo-font
            color="black">
        </dxo-font>
    </dxo-title>
</dx-linear-gauge>
import { Component } from '@angular/core';
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.css']
})
export class AppComponent {
    // ...
}
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { DxLinearGaugeModule } from 'devextreme-angular';
@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        DxLinearGaugeModule
    ],
    providers: [ ],
    bootstrap: [AppComponent]
})
export class AppModule { }Vue
App.vue
<template>
    <DxLinearGauge ... >
        <DxTitle ... >
            <DxFont
                color="black"
            />
        </DxTitle>
    </DxLinearGauge>
</template>
<script>
import DxLinearGauge, {
    DxTitle,
    DxFont
} from 'devextreme-vue/linear-gauge';
export default {
    components: {
        DxLinearGauge,
        DxTitle,
        DxFont
    },
    // ...
}
</script>React
App.js
import React from 'react';
import LinearGauge, {
    Title,
    Font
} from 'devextreme-react/linear-gauge';
class App extends React.Component {
    render() {
        return (
            <LinearGauge ... >
                <Title ... >
                    <Font color="black" />
                </Title>
            </LinearGauge>
        );
    }
}
export default App;ASP.NET MVC Controls
Razor C#
@(Html.DevExtreme().LinearGauge()
    // ...
    .Title(t => t
        .Font(f => f.Color("black"))
    )
)color
Specifies font color.
                        Type:
                    
                
                    Default Value: '#232323'
                
        This option supports the following colors:
- Hexadecimal colors
 - RGB colors
 - RGBA colors
 - Predefined/cross-browser color names
 - Predefined SVG colors
 - Paint server address
 
family
Specifies font family.
                        Type:
                    
                
                    Default Value: '"Segoe UI Light", "Helvetica Neue Light", "Segoe UI", "Helvetica Neue", "Trebuchet MS", Verdana, sans-serif'
                
        For details on acceptable values, refer to the Font family article.
opacity
Specifies font opacity.
                        Type:
                    
                
                    Default Value: 1
                
        This option accepts a value from 0 to 1, where 0 makes the text completely transparent, and 1 makes it opaque.
size
Specifies font size.
A numeric value specifies the font size in pixels. A string value can specify the font size in any units listed here, but multi-line text only supports length units.
weight
Specifies font weight. Accepts values from 100 to 900 in increments of 100. Higher values increase boldness.
                        Type:
                    
                
                    Default Value: 200
                
        Feedback