> For the complete documentation index, see [llms.txt](https://docs.wisej.com/extensions/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wisej.com/extensions/extensions/odometer.md).

# Odometer

The **Odometer** extension enables animated numbers, displaying animated rolling-digit transitions, similar to physical odometers.

## Features

* Displays a numeric Value and animates changes automatically when the value updates.
* Configurable animation speed through Duration in milliseconds.
* Multiple built-in visual skins: Default, Car, Digital, Minimal, Plaza, SlotMachine, and TrainStation.

## Code Example

```csharp
Odometer odometer1 = new Odometer();
odometer1.Skin = OdometerSkin.Digital;
odometer1.Value = 100;
odometer1.Duration = 1000;
this.Controls.Add(odometer1);
```

This code example creates an Odometer with the Digtal *Skin*- so it has green letters with a black background. The *Value* is set to 100, so that is the number that is displayed. *Duration* is set to 1000, so the animation whenever the *Value* changes will take 1000 milliseconds, or 1 second. The odometer created by this code looks like this:

<figure><img src="/files/lFRUOwOOPOOLXR95J4UN" alt=""><figcaption></figcaption></figure>

The animation is triggered whenever the Value property of the Odometer changes. You could, for example, trigger the value change whenever a button is clicked:

```csharp
private void button1_Click(object sender, EventArgs e)
{
    odometer1.Value += 10;
}
```

## Source Code

{% embed url="<https://github.com/iceteagroup/wisej-extensions/tree/4.0/Wisej.Web.Ext.Odometer>" %}

## How To Use

The **Odometer** extension can be added to a Wisej.NET project using NuGet Package Manager.

{% embed url="<https://www.nuget.org/packages/Wisej-4-Odometer/>" %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.wisej.com/extensions/extensions/odometer.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
