Skip to content

Commit 7c7a9ac

Browse files
Merge pull request #482 from IgniteUI/ESShared/XPlaform_examples_igniteui-xplat-examples-output+PRs_2024.3.21.2
Changes from igniteui-xplat-examples-output+PRs_2024.3.21.2
2 parents e96698f + 3ee7bc7 commit 7c7a9ac

17 files changed

Lines changed: 17 additions & 44 deletions

File tree

samples/charts/data-chart/data-legend/src/index.tsx

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import ReactDOM from 'react-dom/client';
33
import './index.css';
44

55
import { IgrLegendModule, IgrNumberAbbreviatorModule, IgrDataChartCoreModule, IgrDataChartScatterModule, IgrDataChartScatterCoreModule, IgrDataChartInteractivityModule, IgrDataLegendModule, IgrDataChartAnnotationModule } from 'igniteui-react-charts';
6-
import { IgrDataLegend, IgrDataChart, IgrNumericXAxis, IgrNumericYAxis, IgrBubbleSeries, IgrSizeScale, IgrCrosshairLayer } from 'igniteui-react-charts';
6+
import { IgrDataLegend, IgrDataChart, IgrNumericXAxis, IgrNumericYAxis, IgrBubbleSeries, IgrCrosshairLayer } from 'igniteui-react-charts';
77
import { CountryDemographicAfricanItem, CountryDemographicAfrican } from './CountryDemographicAfrican';
88
import { CountryDemographicEuropeItem, CountryDemographicEurope } from './CountryDemographicEurope';
99

@@ -33,9 +33,7 @@ export default class Sample extends React.Component<any, any> {
3333
private xAxis: IgrNumericXAxis
3434
private yAxis: IgrNumericYAxis
3535
private bubbleSeries1: IgrBubbleSeries
36-
private sizeScale1: IgrSizeScale
3736
private bubbleSeries2: IgrBubbleSeries
38-
private sizeScale2: IgrSizeScale
3937
private crosshairLayer: IgrCrosshairLayer
4038

4139
constructor(props: any) {
@@ -89,11 +87,6 @@ export default class Sample extends React.Component<any, any> {
8987
radiusMemberAsLegendLabel="Population: "
9088
xMemberAsLegendLabel="Death Rate: "
9189
yMemberAsLegendLabel="Birth Rate: ">
92-
<IgrSizeScale
93-
name="SizeScale1"
94-
minimumValue="10"
95-
maximumValue="100">
96-
</IgrSizeScale>
9790
</IgrBubbleSeries>
9891
<IgrBubbleSeries
9992
name="BubbleSeries2"
@@ -107,11 +100,6 @@ export default class Sample extends React.Component<any, any> {
107100
radiusMemberAsLegendLabel="Population: "
108101
xMemberAsLegendLabel="Death Rate: "
109102
yMemberAsLegendLabel="Birth Rate: ">
110-
<IgrSizeScale
111-
name="SizeScale2"
112-
minimumValue="10"
113-
maximumValue="100">
114-
</IgrSizeScale>
115103
</IgrBubbleSeries>
116104
<IgrCrosshairLayer
117105
name="CrosshairLayer">

samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import ReactDOM from 'react-dom/client';
33
import './index.css';
44

55
import { IgrNumberAbbreviatorModule, IgrDataChartCoreModule, IgrDataChartScatterModule, IgrDataChartScatterCoreModule, IgrDataChartInteractivityModule, IgrDataChartAnnotationModule } from 'igniteui-react-charts';
6-
import { IgrDataChart, IgrNumericXAxis, IgrNumericYAxis, IgrBubbleSeries, IgrSizeScale, IgrDataToolTipLayer } from 'igniteui-react-charts';
6+
import { IgrDataChart, IgrNumericXAxis, IgrNumericYAxis, IgrBubbleSeries, IgrDataToolTipLayer } from 'igniteui-react-charts';
77
import { WorldDebtAndPopulationItem, WorldDebtAndPopulation } from './WorldDebtAndPopulation';
88

99
const mods: any[] = [
@@ -66,11 +66,6 @@ export default class Sample extends React.Component<any, any> {
6666
dataSource={this.worldDebtAndPopulation}
6767
markerType="Circle"
6868
showDefaultTooltip="true">
69-
<IgrSizeScale
70-
isLogarithmic="false"
71-
minimumValue="5"
72-
maximumValue="40">
73-
</IgrSizeScale>
7469
</IgrBubbleSeries>
7570
<IgrDataToolTipLayer
7671
name="DataToolTipLayer">

samples/charts/data-chart/scatter-bubble-chart-styling/src/index.tsx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import ReactDOM from 'react-dom/client';
33
import './index.css';
44

55
import { IgrLegendModule, IgrNumberAbbreviatorModule, IgrDataChartCoreModule, IgrDataChartScatterModule, IgrDataChartScatterCoreModule, IgrDataChartInteractivityModule, IgrDataChartAnnotationModule } from 'igniteui-react-charts';
6-
import { IgrLegend, IgrDataChart, IgrNumericXAxis, IgrNumericYAxis, IgrBubbleSeries, IgrSizeScale, IgrDataToolTipLayer } from 'igniteui-react-charts';
6+
import { IgrLegend, IgrDataChart, IgrNumericXAxis, IgrNumericYAxis, IgrBubbleSeries, IgrDataToolTipLayer } from 'igniteui-react-charts';
77
import { CountryStatsAfricaItem, CountryStatsAfrica } from './CountryStatsAfrica';
88
import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope';
99

@@ -88,11 +88,6 @@ export default class Sample extends React.Component<any, any> {
8888
markerFillOpacity="0.5"
8989
markerThickness="2"
9090
showDefaultTooltip="true">
91-
<IgrSizeScale
92-
isLogarithmic="false"
93-
minimumValue="20"
94-
maximumValue="40">
95-
</IgrSizeScale>
9691
</IgrBubbleSeries>
9792
<IgrBubbleSeries
9893
name="BubbleSeries2"
@@ -109,11 +104,6 @@ export default class Sample extends React.Component<any, any> {
109104
markerFillOpacity="0.5"
110105
markerThickness="2"
111106
showDefaultTooltip="true">
112-
<IgrSizeScale
113-
isLogarithmic="false"
114-
minimumValue="20"
115-
maximumValue="40">
116-
</IgrSizeScale>
117107
</IgrBubbleSeries>
118108
<IgrDataToolTipLayer
119109
name="DataToolTipLayer">

samples/grids/grid/data-summary-options/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"name": "example-ignite-ui-react",
33
"description": "This project provides example of using Ignite UI for React components",
44
"author": "Infragistics",

samples/grids/grid/data-summary-template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"name": "example-ignite-ui-react",
33
"description": "This project provides example of using Ignite UI for React components",
44
"author": "Infragistics",

samples/grids/grid/data-validation-style/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"name": "example-ignite-ui-react",
33
"description": "This project provides example of using Ignite UI for React components",
44
"author": "Infragistics",

samples/grids/grid/data-validator-service-cross-field/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"name": "example-ignite-ui-react",
33
"description": "This project provides example of using Ignite UI for React components",
44
"author": "Infragistics",

samples/grids/grid/data-validator-service-extended/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"name": "example-ignite-ui-react",
33
"description": "This project provides example of using Ignite UI for React components",
44
"author": "Infragistics",

samples/grids/grid/data-validator-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"name": "example-ignite-ui-react",
33
"description": "This project provides example of using Ignite UI for React components",
44
"author": "Infragistics",

samples/grids/grid/editing-columns/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"name": "example-ignite-ui-react",
33
"description": "This project provides example of using Ignite UI for React components",
44
"author": "Infragistics",

0 commit comments

Comments
 (0)