Custom X-axis label formatting in Winform Chart Control - winforms

I am plotting graph with numeric value on Y axis and Date time value on X axis in windows forms chart control. I am setting X axis scale "IsLogarithmic" to true and i am getting the graph as shown in the image ...
I want to set the label formatting of X axis in such a way that it shows me 10^1, 10^2, 10^3 and so on...
Any idea or help will be appreciated.

Related

How to hide axis bars in area chart and line chart in Google Data Studio

I currently have this issue where I am trying to hide the Y-axis of this line chart. Currently there is only the option to hide both axes in GDS.
Issue being is that the floating number at the y axis looks awkward.
Could anyone think of a work around? maybe hiding both axes and then creating a blank chart with the date values and using that as the x axis ticks.
One workaround is to draw a Shape or line over the axis and set it to a colour that blends in with the background, (although in the case above, it would cut into the first data point and data label) using Shift + movement keys for precision placement.
Google Data Studio Report as well as a GIF to elaborate:

Adding Line or separator to y axis in WPF Tool kit Line chart

I have added multiple Y axes to a single chart. Is it possible to add vertical lines in the LinearAxis and a scroll bar in below X axis? Please check out the image below:
How to handle the zoom and pan Functionality in the WPF Toolkit Chart?

Using NvD3 charts, how to get x axis and Y axis label for multichart?

I am using multiChart of nvd3 for dual Y axes purpose.
All series are Line series in my chart.
I want to show X-axis label and Y axis label.
The documentation http://nvd3-community.github.io/nvd3/examples/documentation.html#multiChart for this chart does not have a label property.
Can anyone guide me for showing the x and y1, y2 axes labels?
If I understood the question correctly, you'll need to set the axis labels as follows:
chart.xAxis
.axisLabel('X AXIS');
chart.yAxis1
.axisLabel('Y AXIS 1');
chart.yAxis2
.axisLabel('Y AXIS 2');
Complete example at https://jsfiddle.net/ovvn/f0Lautw0/1/

how to get slider line on x axis and y axis for Chart in codenameone

I want two slider lines - one for x-axis and another for y-axis to show accurate result at any point in the line chart. As slider line move through the any axis it should display the crossing point values (display cross point values w.r.t. axis where slider line overlaps graph ) on the chart. Is there any method available for it ? If not how do I proceed for this ?
You can just place a horizontal and vertical slider next to the charts. However, I'm assuming you want to use them like a scrollbar?
You might prefer using gestures like drag and pinch to work with charts.

WPF Chart with data plotting on both x (datetime range) and y axis

In the Chart control of WPF Toolkit , how can i add plot data on both x and y axis . The graph has numerical data plotted on y axis and a timeline on x axis . To better understand this refer below image. As seen from the image, data is plotted both against x and y axis (i.e after the first negative value in red , data has been plotted against the timeline of x axis and stretches across the timeline). So in this case , i would need to plot 2 values on the x axis - 1) the start time and 2) the end time for a single column ie its a datetime range also on the y axis i would be plotting it against values and as the scale suggests , it is numerical.
Can this be replicated using the chart control in WPF toolkit or is there any workarounds/third party WPF controls which can attain this?.
This can be achieved if you shape your data accordingly. For example if you have your data points like
Time Value
09:51 -4
09:52 -2
09:53 -2
09:54 -2
..
..
..
10:11 -4
you will be able to plot a red rectangle with a long bar at 09:51 AM (Start Time) and long bar at 10:11 AM (End Time).

Resources