Questions tagged [shinobi]

ShinobiControls is a provider of iOS and Android components.

ShinobiControls is a provider of iOS and Android components to ease the development of native, cross platform mobile apps.

They offer a comprehensive set of interactive iOS charts, grids and powerful UI controls. In addition to iOS components,it also provide a powerful Android charting SDK.

It is shareware.

130 questions
1
vote
3 answers

X axis label formatting in Shinobi charts

I have a chart of name versus age, where name is on the x axis and value on Y axis. The problem is the names are getting overlapped on the x axis which do not look good. I could not find any formatting for showing truncated name values on x axis and…
ankit_rck
  • 1,796
  • 2
  • 14
  • 24
1
vote
3 answers

How can I define a variable which could initialise from two different classes?

Sorry about the slightly vague question title but I found it very difficult to get it straight in my head myself. The issue here is that I have two different dataSources I might be initialising and loading data from. Depending on the data changes…
sam_smith
  • 6,023
  • 3
  • 43
  • 60
1
vote
1 answer

How can I add annotation on xaxis/yaxis using shinobiCharts

I am trying to add annotations on chart axis , but annotation always gets clipped by the axis and I cannot place them on the axis besides the tickLabels.
Dushyant Singh
  • 721
  • 4
  • 13
1
vote
1 answer

Shinobi Charts selected point highlighting

I have a SChartLineSeries and when I select a point, the selectedPointStyle doesn't seem to get applied. Here's my code: -(SChartSeries*)sChart:(ShinobiChart *)chart seriesAtIndex:(NSInteger)index { SChartLineSeries* lineSeries =…
Geeky Gal
  • 15
  • 5
1
vote
1 answer

How to toggle on/off a chart series using the Shinobi iOS SDK?

My chart is composed of multiple chart series. I have created a custom legend with buttons so the user can press a button and show or hide a chart series as desired. I have implemented a solution where the number of series are redefined after each…
cbartel
  • 1,298
  • 1
  • 11
  • 18
1
vote
2 answers

How to localize the axis number labels for the Shinobi iOS SDK?

The numbers for the axis labels are not getting localized as expected. When I change the region setting to something like Netherlands the numbers still show with US region formatting. The period is used as a decimal separator and a comma is used…
cbartel
  • 1,298
  • 1
  • 11
  • 18
1
vote
1 answer

How to link a chart axis to a chart series using the Shinobi iOS SDK?

I added a secondary axis to my chart using addYAxis:(SChartAxis *)newYAxis. How do I get the second series linked to the new axis? I found (BOOL)isLinkedToSeries:(SChartSeries *)series in SChartAxis.h. But how do I create the initial link?
cbartel
  • 1,298
  • 1
  • 11
  • 18
1
vote
0 answers

Shinobi Charts (iOS): subclassing SChartCrosshairMultiValueTooltip - how to use the 'labels' property?

So I'm subclassing SChartCrosshairMultiValueTooltip to implement a custom multi-value (OHLC) tooltip. I can get the OHLC data from the chart OK. But I'm having difficulty understanding how to present the data in the way the Shinobi frameworks intend…
Echelon
  • 7,306
  • 1
  • 36
  • 34
1
vote
1 answer

Null instance of ShinobiChart on Android 4.3

I'm following the ShinobiCharts for Android quick start guide, except adding the chart fragment programmatically, like so: FragmentManager fragmentManager = getFragmentManager(); FragmentTransaction fragmentTransaction =…
user2709279
  • 353
  • 1
  • 3
  • 15
1
vote
1 answer

How do I programmatically show ShinobiChart Crosshair and Tooltip?

I am trying to programatically show the crosshair and tooltip for the last datapoint in a chart after it loads. The below code is what I have so far. The crosshair shows in the right place, but the tooltip shows up way to the left and is too small…
nickbona
  • 1,374
  • 1
  • 11
  • 23
1
vote
1 answer

Showing individual points in SChartLineSeries

Using ShinobiChart's SChartLineSeries chart type, I'm trying to enable the display of individual points with a circle (as in this example from ShinobiControls' user guide). Currently, the line plots without any individual points marked. The user…
user2709279
  • 353
  • 1
  • 3
  • 15
1
vote
1 answer

ShinobiChart ignoring series made of 0s

I'm using ShinobiControls for creating a simple chart. When the dataset is: @{ @"Value": @0.0, @"Date": @1364828400 }, @{ @"Value": @0.0, @"Date": @1364914800 }, @{ @"Value": @0.0, @"Date": @1365001200 } ] I receive this error…
Claus
  • 5,662
  • 10
  • 77
  • 118
1
vote
1 answer

Shinobi chart not accessible when inside a scrollview

My application shows an horizontally scrollable area which should contain two different chart implemented using the Shinobi libraries. As my paged Scrollview is made using ATPagingView, I included the chart using the following code: -…
Claus
  • 5,662
  • 10
  • 77
  • 118
1
vote
1 answer

Cannot find ShinobiCharts Header File?

I am using the ShinobiCharts Framework for an app I am making and Xcode Cannot find the headers to use it. I have included the Framework by following these instructions: Adding Framework in Xcode 4 I have also tried copying the entire folder into…
TestinginProd
  • 1,085
  • 1
  • 15
  • 35
1
vote
0 answers

Handle long touch events in ShinobiCharts

I'm using ShinobiCharts with Xamarin MonoTouch and I would like to allow my PieCharts to allow following features : - on touch, highlight corresponding legend and show tooltip - on long touch, reload chart data according to selected value. …
1 2
3
8 9