How to modify X-Axis of ChartingToolkit LineChart





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I have trouble formatting the x axis of my graph accordingly. The x axis shows values from the type DateTime. I would like to control which information is displayed on the x axis. For example only Seconds and Milliseconds. In addition I would like to set an interval for the x axis, if there are too many values to display.



Here is my current state:



I am using the chartingToolkit with following reference, to display a LineChart with two lines:



xmlns:chartingToolkit="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit" 


The data input for the graph look like this:



public ObservableCollection<List<KeyValuePair<DateTime,int>>> ListOutputGraph { get; set; }


This observable collection contains a list for each of the lines to be displayed



Now I plot the graph via XAML like this:



                <chartingToolkit:Chart Name="LineChart1" BorderThickness="0" VerticalAlignment="Top" Margin="0,-30,0,0" Height="382">

<!-- Line P -->
<chartingToolkit:LineSeries Name="P" Title="P Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [0]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Red" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: P" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>

<!-- Line L -->
<chartingToolkit:LineSeries Name="L" Title="L Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [1]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Blue" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: L" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>
</chartingToolkit:Chart>




The result currently looks like this:



enter image description here










share|improve this question























  • Just to have an idea: what is the result you would like to obtain?

    – Il Vic
    Jan 3 at 12:00











  • @IlVic I would like to display Seconds and milliseconds of my DateTime in the X-Axis. In addition I thought about to rotate the Seconds/Milliseconds vertically and the values shall be displayed in an interval

    – Julian
    Jan 3 at 12:34


















0















I have trouble formatting the x axis of my graph accordingly. The x axis shows values from the type DateTime. I would like to control which information is displayed on the x axis. For example only Seconds and Milliseconds. In addition I would like to set an interval for the x axis, if there are too many values to display.



Here is my current state:



I am using the chartingToolkit with following reference, to display a LineChart with two lines:



xmlns:chartingToolkit="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit" 


The data input for the graph look like this:



public ObservableCollection<List<KeyValuePair<DateTime,int>>> ListOutputGraph { get; set; }


This observable collection contains a list for each of the lines to be displayed



Now I plot the graph via XAML like this:



                <chartingToolkit:Chart Name="LineChart1" BorderThickness="0" VerticalAlignment="Top" Margin="0,-30,0,0" Height="382">

<!-- Line P -->
<chartingToolkit:LineSeries Name="P" Title="P Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [0]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Red" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: P" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>

<!-- Line L -->
<chartingToolkit:LineSeries Name="L" Title="L Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [1]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Blue" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: L" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>
</chartingToolkit:Chart>




The result currently looks like this:



enter image description here










share|improve this question























  • Just to have an idea: what is the result you would like to obtain?

    – Il Vic
    Jan 3 at 12:00











  • @IlVic I would like to display Seconds and milliseconds of my DateTime in the X-Axis. In addition I thought about to rotate the Seconds/Milliseconds vertically and the values shall be displayed in an interval

    – Julian
    Jan 3 at 12:34














0












0








0








I have trouble formatting the x axis of my graph accordingly. The x axis shows values from the type DateTime. I would like to control which information is displayed on the x axis. For example only Seconds and Milliseconds. In addition I would like to set an interval for the x axis, if there are too many values to display.



Here is my current state:



I am using the chartingToolkit with following reference, to display a LineChart with two lines:



xmlns:chartingToolkit="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit" 


The data input for the graph look like this:



public ObservableCollection<List<KeyValuePair<DateTime,int>>> ListOutputGraph { get; set; }


This observable collection contains a list for each of the lines to be displayed



Now I plot the graph via XAML like this:



                <chartingToolkit:Chart Name="LineChart1" BorderThickness="0" VerticalAlignment="Top" Margin="0,-30,0,0" Height="382">

<!-- Line P -->
<chartingToolkit:LineSeries Name="P" Title="P Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [0]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Red" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: P" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>

<!-- Line L -->
<chartingToolkit:LineSeries Name="L" Title="L Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [1]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Blue" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: L" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>
</chartingToolkit:Chart>




The result currently looks like this:



enter image description here










share|improve this question














I have trouble formatting the x axis of my graph accordingly. The x axis shows values from the type DateTime. I would like to control which information is displayed on the x axis. For example only Seconds and Milliseconds. In addition I would like to set an interval for the x axis, if there are too many values to display.



Here is my current state:



I am using the chartingToolkit with following reference, to display a LineChart with two lines:



xmlns:chartingToolkit="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit" 


The data input for the graph look like this:



public ObservableCollection<List<KeyValuePair<DateTime,int>>> ListOutputGraph { get; set; }


This observable collection contains a list for each of the lines to be displayed



Now I plot the graph via XAML like this:



                <chartingToolkit:Chart Name="LineChart1" BorderThickness="0" VerticalAlignment="Top" Margin="0,-30,0,0" Height="382">

<!-- Line P -->
<chartingToolkit:LineSeries Name="P" Title="P Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [0]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Red" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: P" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>

<!-- Line L -->
<chartingToolkit:LineSeries Name="L" Title="L Out" DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding [1]}" IsSelectionEnabled="True" >
<chartingToolkit:LineSeries.DataPointStyle>
<Style TargetType="chartingToolkit:DataPoint">
<Setter Property="Background" Value="Blue" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:LineDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<ContentControl Content="Data Row: L" FontWeight="Bold" />
<ContentControl Content="{TemplateBinding IndependentValue}" ContentStringFormat="Time: {0}" />
<ContentControl Content="{TemplateBinding DependentValue}" ContentStringFormat="Value: {0}"/>
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:LineSeries.DataPointStyle>
</chartingToolkit:LineSeries>
</chartingToolkit:Chart>




The result currently looks like this:



enter image description here







c# wpf charts data-visualization






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 3 at 9:32









JulianJulian

678




678













  • Just to have an idea: what is the result you would like to obtain?

    – Il Vic
    Jan 3 at 12:00











  • @IlVic I would like to display Seconds and milliseconds of my DateTime in the X-Axis. In addition I thought about to rotate the Seconds/Milliseconds vertically and the values shall be displayed in an interval

    – Julian
    Jan 3 at 12:34



















  • Just to have an idea: what is the result you would like to obtain?

    – Il Vic
    Jan 3 at 12:00











  • @IlVic I would like to display Seconds and milliseconds of my DateTime in the X-Axis. In addition I thought about to rotate the Seconds/Milliseconds vertically and the values shall be displayed in an interval

    – Julian
    Jan 3 at 12:34

















Just to have an idea: what is the result you would like to obtain?

– Il Vic
Jan 3 at 12:00





Just to have an idea: what is the result you would like to obtain?

– Il Vic
Jan 3 at 12:00













@IlVic I would like to display Seconds and milliseconds of my DateTime in the X-Axis. In addition I thought about to rotate the Seconds/Milliseconds vertically and the values shall be displayed in an interval

– Julian
Jan 3 at 12:34





@IlVic I would like to display Seconds and milliseconds of my DateTime in the X-Axis. In addition I thought about to rotate the Seconds/Milliseconds vertically and the values shall be displayed in an interval

– Julian
Jan 3 at 12:34












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54019527%2fhow-to-modify-x-axis-of-chartingtoolkit-linechart%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54019527%2fhow-to-modify-x-axis-of-chartingtoolkit-linechart%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

How to fix TextFormField cause rebuild widget in Flutter

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith