ticks

MATLAB: Can axes tick labels be accesed as text objects?

I'm curious is it possible to change text properties of tick labels independently of axes properties. Do they have handles? I'd like to control their position better, alignment, color, fonts, etc. I know I can substitute them with text labels, but it has some drawbacks. Any alternative solutions? Particularly, is it possible to put xtic...

Getting the System tick count with basic C++?

I essentially want to reconstruct the getTickCount() windows function so I can use it in basic C++ without any non standard libraries or even the STL. (So it complies with the libraries supplied with the Android NDK) I have looked at clock() localtime time But I'm still unsure whether it is possible to replicate the get...

Convert date to ticks

How to convert one datetime to ticks? ...

Convert date to ticks in SQL Server

Does anyone know how to convert a DATETIME COLUMN to TICKS in SQL Server? ...

Compare DateTime ticks on two machines

Is it a viable option to compare two FileInfo.CreationTimeUtc.Ticks of two files on two different computers to see which version is newer - or is there a better way? Do Ticks depend on OS time or are they really physical ticks from some fixed date in the past? ...

core-plot: still do not understand how to have custom label AND ticks

Hello, I have this problem since a long time and I cannot find anything to solve this. I read several forum but was not able to find a working solution. I have the following code: // Adjust graph using above data CPXYPlotSpace *plotSpace = (CPXYPlotSpace *)graph.defaultPlotSpace; plotSpace.xRange = [CPPlotRange plotRang...

Why is IDL adding it's own tick marks to my custom plot tick marks?

I'm trying to specify custom Y axis tick marks, but IDL is not cooperating. http://i.imgur.com/BFqMO.png In the top left, 1.0000 should be the max value, but IDL puts a 57 there. 57 is the max array dimension of my data. I have an array of eta levels(strings) corresponding 1:1 with the array indices, and I want to use them as tick m...

How to plot data against specific dates on the x-axis using matplotlib

I have a dataset consisting of date-value pairs. I want to plot them in a bar graph with the specific dates in the x-axis. My problem is that matplotlib distributes the xticks over the entire date range; and also plots the data using points. The dates are all datetime objects. Here's a sample of the dataset: data = [(DT.datetime.strpt...

How to use string values in place of ticks on WPF Tickbar?

I wish to customize the appearance of the basic WPF TickBar. I was wondering if there was a simple way to do this using a control template: I wish to have numbers in place of ticks along the tickbar. I want the position of the number to correspond to the value of a slider (much like the picture in the link). I've searched around an...

Generating axis tick annotation that occupies 2 lines

I have a time series I an plotting with jqPlot where I am using a custom tick renderer for the X axis values. However I want to display text shown at each tick position as 2 lines, stacked one above the other. I've tried rendering the string with sprintf and using "\n" but it seems to have no effect - can this be done? I notice i...