Get an awesome Raygun T-shirt!

Robbie the Robot wants you!

Robot

To try out our newest product for tracking and fixing errorsRaygun.io!

Sign up for a FREE 30 day trial, and find out how Raygun makes error collecting, reporting and management automatic and easy.

Sign up to raygun for a free trial

Then, if you blog about your experience with Raygun (and your honest experience at that), we’d love to send you your very own Raygun T-shirt (anywhere in the world).

Double-T-shirts

Like these cool dudes are wearing!

They come in lady sizes too!

Hilary-raygun-tshirt

I’m an error blasting machine.

So if you would like to do a blog review of your experience with the mighty Raygun, sign up here for your free trial, and email hilary@mindscape.co.nz to grab one of these rad T-shirts while we still have ‘em!

Tagged as General

Nightly news, 8 Feb 2013

LightSpeed

  • Add constructor which allows user to specify the list of stop words used by the Lucene analyzer

Web Workbench

  • Intelliense for Less mixins is now correctly triggered when in a CSS property context

WPF Diagrams

  • Added DiagramConnectionPointBase.HasConnections property
    (details)
  • The drag-panning user operation now respects the AllowInfiniteScroll property.
    (details)
  • Resolved a diagram scrolling bug.
    (details)
  • Resolved a critical selection bug.
    (details)

WPF Elements

  • Resolved a rendering bug in the DataGrid caused by changing the visibility while a custom cell has focus.
    (details)
  • Added DataGrid.AutoColumnWidthBehavior property.
    (details)
  • Resolved a minor charting selection bug.
    (details)
  • Added Chart.CanToggleSelection property.
    (details)
  • Added Chart.CanDeselectOnClickNothing property.
    (details)
  • Added Chart.IsRightClickSelectionEnabled property.
    (details)
  • Resolved a DataGrid auto column width issue.
    (details)
  • Added DataGridColumn.MaxAutoWidth property.
    (details)
  • Added DataGrid.CanAutoSizeColumnHeaders property.
    (details)
  • DataPoint selection logic now respects the IsRightClickSelectionEnabled and CanToggleSelection properties.
    (details)

As usual the free editions of the nightly builds are available right now from the downloads page, and the full editions from the store.

Tagged as General

Metro Elements – Amazing new financial charts for Windows Store apps

Here at Mindscape we’re excited about the upcoming release of some great new tools and control suites. One of these is Metro Elements for Windows Store apps, and those of you that are participating in its beta will know it’s looking pretty great. I’m particularly pleased with the new financial chart controls; you get two great controls ready to display market data with little initial configuration needed. To see these in action, you can check out the Youtube video here:

One is the Candlestick Chart, the other is the Stock Chart, also referred to as an Open-High-Low-Close chart. They both display points with that data (OHLC), while varying in their presentation – so you get to choose the type that best suits your client’s data and use cases. The Candlestick chart displays the area between the open and close prices as a shaded box.

It takes just a few quick steps to place one of these charts in your Windows Store app. In your Page’s Xaml, create an instance of a Chart, along with either the StockSeries or CandlestickSeries (I’ll be using the latter) nested inside it:

<ch:Chart>
<ms:CandlestickSeries ItemsSource="{Binding Data}" />
</ch:Chart>

As is standard, we can set the ItemsSource to bind to a Collection property on the DataContext. Metro Elements provides a handy helper object to represent OHLC data points, and we can use that to get our Candlestick chart up and running quickly. The type is StockDataPoint, which resides in Mindscape.MetroElements.Charting. The constructor signature for it looks like this:

public StockDataPoint(DateTime date, double open, double high, double low, double close)

You only need to provide a DataTime along the OHLC values and the CandlestickSeries/StockSeries will display your data immediately. If, however, you already have your own model and data structure for representing OHLC, binding to that is also easy. Firstly set the ItemsSource to the Collection holding your custom OHLC structures. Then, just set the follow properties on CandlestickSeries to specify which model properties contain the relevant data: XBinding, YBinding, LowBinding, HighBinding, OpenBinding, CloseBinding.

Styling the points

You may want to style the points depending on how the point performed that day – if the close is lower than the open, then color the point red, for instance. That’s as easy as providing the desired color to the series:

<ms:CandlestickSeries ItemsSource="{Binding Data}" NegativeSeriesBrush="#FF0000" />

Or, if you want to completely customize the style of the negative or positive points, you can too. This is accomplished by setting NegativeStyle or PositiveStyle.

One of the best features about our Chart control is how modular it is. It’s remarkably easy to get the chart elements you want up and running with a few lines of Xaml, and you can mix and match them as you like. Some great examples are available in the Sample Explorer demo application included with the beta (as well as the full version, naturally) – check out the Composite Charts demo for some ideas.

The Sample Explorer also includes fully working and interactive examples of the two financial charts discussed in this post. Download it and check them out now, they’re available here. The beta includes the financial charts along with 15 other great chart controls, and many other controls for data display and productivity. Thanks for reading; if you have any questions feel free to leave a comment or make a post in our forums.

Tagged as General

Win a Kindle Paperwhite, $50 Amazon gift card and license to Metro Elements worth $799 USD!

A Kindle Paperwhite, $50 Amazon gift card and Metro Elements license are up for grabs this October

October 2012 is turning out to be a ripper of a month, what with new releases coming out left, right and center. Windows 8 is officially launched on the 25th, and the Kindle Paperwhite is due to come out on October 1st – not to mention the final version of Mindscape Metro Elements!

So, in honor of this exciting month, we’re making it even better by running a killer twitter competition. You can go in the draw to win:

  • a Kindle Paperwhite,
  • $50 worth of Amazon gift vouchers to spend on whatever you please (books for your brand new Kindle!?)
  • and a license to the Metro Elements worth $799 USD!

To enter this competition all you need to do is follow @MindscapeHQ on Twitter, and Tweet this blog post to your followers! You’ll see a little ‘tweet’ button beside this post so you can share it in less than a second. Easy!


Winner will be announced on the 31st October.

Tagged as General

Thanks To Our Biggest Fans!

The winners of the Annual CodeProject Awards were announced last week, with Mindscape winning recognition from members for providing what they consider to be awesome .NET tools.

We’re super happy because this recognition means that our goal of building developer tools that make life easier for developers is being recognized. The awards are based on member votes, so we have you guys to thank for taking the time to vote.

A round of applause to you, our biggest fans. Thanks!

Tagged as General

Archives

Join our mailer

You should join our newsletter! Sent monthly:

Back to Top