Rev | Line | |
---|
[12503] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace Microsoft.Research.DynamicDataDisplay.Charts
|
---|
| 7 | {
|
---|
| 8 | internal static class DefaultTicksProvider
|
---|
| 9 | {
|
---|
| 10 | internal static readonly int DefaultTicksCount = 10;
|
---|
| 11 |
|
---|
| 12 | internal static ITicksInfo<T> GetTicks<T>(this ITicksProvider<T> provider, Range<T> range)
|
---|
| 13 | {
|
---|
| 14 | return provider.GetTicks(range, DefaultTicksCount);
|
---|
| 15 | }
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.