Skip to content

Commit a149994

Browse files
Charts: update date in demos (part 1) (#32882)
Co-authored-by: EugeniyKiyashko <EugeniyKiyashko@users.noreply.github.com>
1 parent c8e8a40 commit a149994

55 files changed

Lines changed: 3337 additions & 5607 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/app/app.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div id="chart-demo">
22
<dx-chart [dataSource]="monthWeather" [customizePoint]="customizePoint">
33
<dxo-chart-title
4-
text="Temperature in Seattle: October 2017"
4+
text="Temperature in Seattle: October 2025"
55
></dxo-chart-title>
66
<dxo-chart-size [height]="420"></dxo-chart-size>
77
<dxi-chart-series

apps/demos/Demos/Charts/ClientSideDataProcessing/React/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function App() {
4141
<div id="chart-demo">
4242
{monthWeather && (
4343
<Chart
44-
title="Temperature in Seattle: October 2017"
44+
title="Temperature in Seattle: October 2025"
4545
dataSource={monthWeather}
4646
customizePoint={customizePoint}
4747
>

apps/demos/Demos/Charts/ClientSideDataProcessing/ReactJs/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function App() {
4545
<div id="chart-demo">
4646
{monthWeather && (
4747
<Chart
48-
title="Temperature in Seattle: October 2017"
48+
title="Temperature in Seattle: October 2025"
4949
dataSource={monthWeather}
5050
customizePoint={customizePoint}
5151
>

apps/demos/Demos/Charts/ClientSideDataProcessing/Vue/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<DxChart
44
:data-source="monthWeather"
55
:customize-point="customizePoint"
6-
title="Temperature in Seattle: October 2017"
6+
title="Temperature in Seattle: October 2025"
77
>
88
<DxSize :height="420"/>
99
<DxValueAxis>

apps/demos/Demos/Charts/ClientSideDataProcessing/jQuery/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ $(() => {
1313

1414
$('#chart').dxChart({
1515
dataSource: source,
16-
title: 'Temperature in Seattle: October 2017',
16+
title: 'Temperature in Seattle: October 2025',
1717
size: {
1818
height: 420,
1919
},

0 commit comments

Comments
 (0)