Skip to content

IGDataChart: demonstrate new MarkerSize in existing Marker Types sample#95

Closed
Copilot wants to merge 2 commits into
masterfrom
copilot/demo-new-marker-size-property
Closed

IGDataChart: demonstrate new MarkerSize in existing Marker Types sample#95
Copilot wants to merge 2 commits into
masterfrom
copilot/demo-new-marker-size-property

Conversation

Copilot AI commented May 21, 2026

Copy link
Copy Markdown

This updates the WPF DataChart marker samples to explicitly demonstrate the new MarkerSize API introduced in 26.1.
Instead of adding a new sample, the existing Marker Types sample now shows both marker shape and marker size control in one place.

  • Sample update: Display/Markers/MarkerTypes

    • Wired SplineSeries.MarkerSize to a UI slider for live resizing.
    • Added compact inline controls in the sample header:
      • Marker Size label
      • size slider (6..40, default 20, snap-to-tick)
      • current numeric value display
  • Why this sample

    • MarkerTypes already demonstrates marker shape selection; adding size control keeps marker customization scenarios co-located and easy to discover.
  • Implementation snippet

    <ig:SplineSeries
        MarkerType="{Binding ElementName=cmbMarkerType, Path=SelectedItem.Tag, Converter={StaticResource MarkerTypeConverter}}"
        MarkerSize="{Binding ElementName=markerSizeSlider, Path=Value}"
        ... />
    
    <TextBlock Text="Marker Size" ... />
    <Slider x:Name="markerSizeSlider"
            Minimum="6" Maximum="40" Value="20"
            TickFrequency="2" IsSnapToTickEnabled="True" ... />
    <TextBlock Text="{Binding ElementName=markerSizeSlider, Path=Value, StringFormat={}{0:0}}" ... />
  • Screenshot
    MarkerSize sample UI

Copilot AI linked an issue May 21, 2026 that may be closed by this pull request
Agent-Logs-Url: https://github.com/Infragistics/wpf-samples/sessions/81bf0a77-519c-4b5e-b9d2-bcc20fb5c82b

Co-authored-by: gedinakova <16817847+gedinakova@users.noreply.github.com>
Copilot AI changed the title [WIP] Add sample project to demo new marker size property IGDataChart: demonstrate new MarkerSize in existing Marker Types sample May 21, 2026
Copilot AI requested a review from gedinakova May 21, 2026 16:57
@gedinakova gedinakova requested a review from IGvaleries May 21, 2026 17:14
@IGvaleries IGvaleries changed the base branch from master to vnext May 21, 2026 22:30
@IGvaleries IGvaleries changed the base branch from vnext to master May 21, 2026 22:35
@IGvaleries IGvaleries changed the base branch from master to vnext May 21, 2026 22:38
@IGvaleries IGvaleries changed the base branch from vnext to master May 21, 2026 22:39

@IGvaleries IGvaleries left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was done in the wrong branch, I tried changing the base branch but it seems some stuff got added I think it may need to be redone.

For this repo, we update vnext as master is what our customers use (hence it is the default branch for them), so until we actually release the VR we should update vnext and then after we release the product we need to merge vnext into master

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Demo the new Marker size property

3 participants