Skip to content

Commit

Permalink
chore(Examples): update subtitle
Browse files Browse the repository at this point in the history
  • Loading branch information
antichaosdb committed Jul 3, 2024
1 parent 43172c0 commit 73b71cc
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import { ExampleStrings } from "../../../ExampleStrings";
import { TDocumentationLink } from "../../../../../helpers/types/ExampleDescriptionTypes";
import exampleImage from "./javascript-central-axes.jpg";

const description = `Demonstrates a chart with a static X Axis
SciChart supports customization of Axis static behavior by setting the isStaticAxis property to true.`
const description = `Demonstrates a realtime chart where the ticks and gridlines are fixed, but the labels change.
This is achieved by setting the isStaticAxis property to true on the X axis.`;

const documentationLinks: TDocumentationLink[] = [
{
{
href: ExampleStrings.urlStaticAxisDocumentation,
title: ExampleStrings.urlTitleStaticAxisDocumentation,
linkTitle: "Static Axis",
Expand All @@ -17,10 +17,14 @@ const documentationLinks: TDocumentationLink[] = [

const Subtitle = (frameworkName: string) => (
<p>
Demonstrates how to create a <strong>{frameworkName} Chart with static X Axis</strong>.
Demonstrates a realtime <strong>{frameworkName} static axis chart</strong> - where the ticks and gridlines are
fixed, but the labels change.
<br />
With SciChart.js High Performance{" "}
<a href={ExampleStrings.urlJavascriptChartFeatures} target="_blank">
JavaScript Charts
</a>
</a>{" "}
you can achieve this simply by setting isStaticAxis property to true on the X axis.
</p>
);

Expand Down

0 comments on commit 73b71cc

Please sign in to comment.